Form Php


Your Name: 


//Dynamic data
//index.php
print "Hello, ";
// Print what was submitted in the form parameter called 'user'
print $_POST['user'];
print "!";
?>