CONTACTANOS
php
if(isset($_POST['submit']))
{
$name = $_POST['name'];
echo 'User Has submitted the form and entered this name : $name';
echo 'You can use the following form again to enter a new name.';
}
?>