In my web page I want to check post and get method at once. This is my code. But this code is not working.."GET" recives data from ajax page and "POST" receives data from same php page.
Code:
if((isset($_GET['S'])==1) && (isset($_POST['Submit']))) echo "test"; }
Comment