|
That error means that the function doesn't exist.
Change
$type = mysql_escape_quotes($_GET['type']);
to
$type = $_GET['type'];
then...
echo "$type";
just below it this way you will find out if the data is being picked up.
Last edited by feraira; 04-18-2007 at 04:23 AM..
|