02-05-2008, 12:15 AM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Sep 2007
Location: Arizona
Posts: 114
Thanks: 10
|
Try:
PHP Code:
if (count($_GET) > 1) { /* error */ }
$_GET is an array, so you have to use count() to count how many parts to the array there are.
|
|
|