I am getting an undefined index error on this line of code:
switch ($_REQUEST["___p"])
I think I would need to declare the variable. What would I change the above line to?
I am getting an undefined index error on this line of code:
switch ($_REQUEST["___p"])
I think I would need to declare the variable. What would I change the above line to?
 
    
     
    
    Either make sure exists beforehand with isset() or just ignore it:
switch (@$_REQUEST["___p"])
