Computer advice for people ....
How do I test if a page php is submitted by GET or POST Request?
This happens to be very easy.
if(isset($_GET)) { $get = true;} else { $get = false;}
echo $get;
Post a Comment
0 comments:
Post a Comment