php url parametreleri kontrol

0 Cevap php

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 q and i are IDs on MySQL server that must be fetched using mysql_query() and the like. Parameters are always integers.

Birileri herhangi bir parametre olmadan url yazarsanız PHP ve MySQL hem de hataları bağırır. Yanlış sözdizimi için tanımsız değişken (ler) ve MySQL için PHP.

Ben şimdiye kadar denedim ne değildir işleri hep "Hata" olsun gelmez;

if (is_int($_GET['q']) AND is_int($_GET['i']))
{
 echo "All good.";
}
else
{
 echo "Error.";
}

Ben burada yanlış ne yapıyorum.

Thanks, atno

0 Cevap