View Single Post
  #9  
Old 04-04-2012, 06:08 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 400,675
Hall of Famer is on a distinguished road
Default

Well, replace the line below:

PHP Code:
$adoptexist $stmt->fetch(PDO::FETCH_ASSOC);        
if(
$adoptexist == 0$familyname[$i][$j] = "<br>"
by the correct one:

PHP Code:
$thisadopt $stmt->fetch(PDO::FETCH_ASSOC); 
if(!
is_object($thisadopt)) $familyname[$i][$j] = "<br>"
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote