Receiving the following:
Notice: Undefined index: func in /Applications/XAMPP/xamppfiles/htdocs/select2/func.php on line 23 Notice: Undefined index: func in /Applications/XAMPP/xamppfiles/htdocs/select2/func.php on line 67 Notice: Undefined index: func in /Applications/XAMPP/xamppfiles/htdocs/select2/func.php on line 114
Here are the offending lines:
Line 23
if($_GET['func'] == "drop_1" && isset($_GET['func'])) { 
drop_1($_GET['drop_var']); 
}
function drop_1($drop_var)
{  
Line 67
if($_GET['func'] == "drop_2" && isset($_GET['func'])) { 
drop_2($_GET['drop_var']); 
}
function drop_2($drop_var)
{ 
Line 114
if($_GET['func'] == "drop_3" && isset($_GET['func'])) { 
drop_3($_GET['drop_var']); 
}
function drop_3($drop_var)
{  
I looked in the existing questions and didn't find an answer where an if statement was attached with the operator &&.
Thanks,
 
     
    