php form get

Solutions on MaxInterview for php form get by the best coders in the world

showing results for - "php form get"
Carl
20 Jun 2016
1<form action="myaction.php" method="post">
2 <p>Your name : <input type="text" name="name" /></p>
3 <input type="submit" value="Submit">
4</form>
5
6// myaction.php
7Hello <?php echo htmlspecialchars($_POST['name']); ?>