php GET function
Hello,
please can you tell me, why it do not go??
if (isset($_GET["NUMBER"])) {
$NUMBEER=mysql_real_escape_string($_GET['NUMBER']);
$querys=mysql_query("SELECT * FROM __table__ WHERE ID='$NUMBEER'");
($rou = mysql_fetch_array($querys));
And site, where i am is mysite.com/index.php?id=phpfile
this go normaly... but
mysite.com/index.php?id=phpfile&NUMBER=2
it dont go...why??, is it GET function?
THANK YOU FOR HELP..and sorry for bad english
|