View Single Post
  #14  
Old 01-27-2009, 09:17 PM
agnyz agnyz is offline
Member
 
Join Date: Jan 2009
Posts: 31
Credits: 2,736
agnyz
Default RE: Terms of Service Violation

Quote:
Originally Posted by BMR777
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. :)
thanks for clearing that up, it works great of course.

I knew I couldn't have forgotten anything because I copy and pasted.

Thanks for the support you give.

Have to say out of all the support sites I have used this one is the best.[hr]
small problem with this fix.

it works fine on the manage.php but on the adopt.php once they have adopted a pet and get the code the link shows up without the user id number. it just shows up as adoptables/get/.jpg">
Reply With Quote