If I want to put two to three parameters to the isset $_GET. Do I do it like how it is done in isset $_POST like this?
if (isset($_POST['pid'], $_POST['qty']))
So it will turn out something like this?
if (isset($_GET['pid'], $_GET['qty']))
Would this work if I will pass the $_GET and the $_POST will catch it?