Re: Problems outputting to a 3 column table in order to crate an image gallery
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.php archive

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

From: Rik <luiheidsgoeroe@hotmail.com>
Date: Mon May 01 2006 - 01:38:58 CEST

The only thing I can think of is that the following code sets
$_GET['imagetype'], allthough it didn't previsously exist.

if(get_magic_quotes_gpc()){
    $_GET['imagetype'] = stripslashes($_GET['imagetype']);
}

Try echoing your query, is should be "SELECT * FROM mydatabase" and nothing
more.
Else try:

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

Grtz,

-- 
Rik Wasmus
Received on Mon May 1 03:08:13 2006