View Single Post
  #13  
Old 01-27-2009, 04:47 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 17,150
BMR777 is on a distinguished road
Default RE: Terms of Service Violation

Here's the issue:

PHP Code:
<img src="http://www.".$dname."".$spath."/get/".$id.".jpg\"> 
is wrong. Told you you forgot something. :)

Should be:

<img src=\"http://www.".$dname."".$spath."/get/".$id.".jpg\">

You forgot the backslash before the quote before http, and PHP didn't like that. :)

Try the above and see if it works. :)

EDIT: I see what happened. Stupid MyBB when I post using PHP tags on the code strips out the slash before the http and the quote in front. So, that's a bit odd then. :)
Reply With Quote