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 Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
czukoman20 Posted December 9, 2007 Author Share Posted December 9, 2007 Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.