I am running a PHP script, and keep getting errors like:
Notice: Undefined index: search in C:\server\data\localweb\easy_ticket\admin\view_tickets.php on line 188
Line 188 looks like this:
if ($_GET["search"] || $_GET["filter"] && $_GET["f"]- && $_GET["sortby"]) {
After googling this issue I got this solution .. Using isset()
The problem is that I cant visualize the way I apply this to the code .. @.@