Re: Problems outputting to a 3 column table in order to crate an image gallery



Rik wrote:
$where = (isset($_GET['imagetype'])) ? "WHERE imagetype =
'".$_GET['imagetype']."'" : '';

Should be:
$where = (isset($_GET['imagetype'])) ? "WHERE imagetype = '".$imagetype."'"
: '';
--
Rik Wasmus


.