PHP - Programming Language
This course covers the basics of programming in PHP. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Post Vs Get

Lesson 14
Author : 🦒
Last Updated : November, 2017


Code

site.phpCopy
<form action="App.php" method="POST"> Password: <input type="password" name="password"> <input type="submit"> </form> <?php echo $_POST["password"]; ?>