Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
this error means that the get request had no parameter ""SearchInput".
If you want to remove that notice, you should either check with isset in the if condifiotn, or initialize it before going in the if:
PHP Code:
$SearchInput=isset($_GET['SearchInput']?$_GET['SearchInput']:False ... if (QSfilterW($SearchInput)==false || $SearchInput!=true){
}
And note that it's just a notice, not an error.
It simply is mean as an informational message that PHP had to interpret what you wrote in a way that might not be the one you wanted.
like using $array[key] rather than $array['key']. In the first case, php tries to find a constant named "key", but as it doesn't finf one, fall back to look if the array have a key named "key".
You might had forgot to include the part who defined the constant.
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 01-05-2009 at 04:23 PM..
|