View Single Post
  #7  
Old 01-22-2011, 08:41 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 32,515
fadillzzz is an unknown quantity at this point
Default

I found the error on your first code!
Line 116:
PHP Code:
<img src='".randomImage($items)." alt='Prize'></div>;" 
It should be:
PHP Code:
<img src='".randomImage($items)."' alt='Prize'></div>"; 

Last edited by fadillzzz; 01-28-2011 at 11:35 PM.
Reply With Quote