Ok, I have been coding for a while mainly in PHP and SQL, but something is confusing ...
I am passing 3 variables via form=get, and action=search.php.
Well, I accidentally left out my variable assignments:
$search=$_GET["search"];
$fordom=$_GET["fordom"];
$category=$_GET["category"];
And continued with my query within the search.php. It all still worked. I double checked the file on the server, I searched my document for any $_GET terms and they are not there, so now I am confused.
Is this possible or is it likely that I am missing something?