czukoman20 Posted December 9, 2007 Share Posted December 9, 2007 I've been looking online and i can't find it anywhere.. I need help with the img src for php echo " <img src=\"http://www.adworld-online.com/images/banners/$username"."_banner.jpg\" width="500" height="95"> <br>"; Parse error: parse error, unexpected T_LNUMBER, expecting ',' or ';' in /homepages/19/d214339524/htdocs/browse/ad1.php Thats the error code what is wrong with this code Link to comment https://forums.phpfreaks.com/topic/80836-solved-img-src-issue/ Share on other sites More sharing options...
emehrkay Posted December 9, 2007 Share Posted December 9, 2007 you just have some concatenation errors and you do not out all of the double quotes echo " <img src=\"http://www.adworld-online.com/images/banners/". $username ."_banner.jpg\" width=\"500\" height=\"95\"> <br>"; i suggest using a text editor that will color your code, it is a lot easier to see these types of mistakes Link to comment https://forums.phpfreaks.com/topic/80836-solved-img-src-issue/#findComment-410084 Share on other sites More sharing options...
revraz Posted December 9, 2007 Share Posted December 9, 2007 ?> <img src="http://www.adworld-online.com/images/banners/<?php $username ?>._banner.jpg" width="500" height="95"> <br> <?php Link to comment https://forums.phpfreaks.com/topic/80836-solved-img-src-issue/#findComment-410085 Share on other sites More sharing options...
czukoman20 Posted December 9, 2007 Author Share Posted December 9, 2007 Thanks Link to comment https://forums.phpfreaks.com/topic/80836-solved-img-src-issue/#findComment-410110 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.