Skip to main content

Posts

Showing posts from March, 2019

PHP $_GET, $POST and $_REQUEST Superglobal Variable Part1

Code: <form action="" method="post"> <input type="text" name="name" /> <input type="submit" value="Submit" name="submit" /> </form> <?php if(isset($_REQUEST['submit'])){ print $_REQUEST['name']; } ?>

PHP $_GET, $POST and $_REQUEST Superglobal Variable Part1