Jump to content

[SOLVED] img src issue.


czukoman20

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.