there are no errors showing aswell so its a dead end.
this works in main page but as soon as i put it in index it dosnt work even tho there is a database connection valid as im pullin how many poeple have registered etc but for sum reason this dosnt wna work
Code:
$sql = "SELECT path FROM gallery_files WHERE approved = 1 "; $items = mysql_query($sql); echo mysql_error(); if(mysql_num_rows($items)>0) while ($item = mysql_fetch_array($items)) { $main.="<img src=\"../phpThumb/phpThumb.php?src=$item[0]\" width=\"50\" height=\"50\" alt=\"$item[0]\"/>"; }
Comment