php url parameters check

Dj

New Member
I'm creating a website that relays on $_GET to function correctly.It works like this: http://www.example.com/show?q=14&i=48 \[code\]q\[/code\] and \[code\]i\[/code\] are IDs on MySQL server that must be fetched using mysql_query() and the like. Parameters are always integers.If someones type the url without any parameters both PHP and MySQL yells errors. PHP for undefined variable(s) and MySQL for incorrect syntax.What i've tried so far doesn't works i always get "Error";\[code\]if (is_int($_GET['q']) AND is_int($_GET['i'])){ echo "All good.";}else{ echo "Error.";}\[/code\]What am i doing wrong here. Thanks,atno
 
Back
Top