I have this php code from a wordpress theme
<?php
....
$image_source = bloginfo('template_url').'/timthumb.php?src='.$slider_images[$i].'&w=940&h=400&zc=1';
echo "<Image Source='".$image_source."'></Image>";
....
?>
and the expected result is :
<Image Source='http://...timthumb.php?... .png'></Image>
instead of that i get this :
http://... <Image Source='/timthumb.php?.... .png'></Image>