Code:
if((isset($_GET['S'])==1) or (isset($_POST['Submit']))) echo "test"; }
Code:
if((isset($_REQUEST['S'])==1) && (isset($_REQUEST['Submit']))) echo "test"; }
if((isset($_GET['S'])==1) or (isset($_POST['Submit']))) echo "test"; }
if((isset($_REQUEST['S'])==1) && (isset($_REQUEST['Submit']))) echo "test"; }
Leave a comment: