Easy method to search for existence of $_GET and $_POST vars
Posted: Fri Apr 01, 2005 11:32 am
Just wanted to know if theres an easier way to check this
If there is please let me know.
Thanks
Code: Select all
if (
isset($_GET['a']) &&
isset($_GET['ab']) &&
isset($_GET['c']) &&
isset($_GET['e']) &&
isset($_GET['z']) &&
isset($_GET['fg']) &&
isset($_GET['hj'])
)
{
// Do Something
}Thanks