http://php.flashwebhost.com/sibichan...bscription.php

PHP Code:

<?php

if (isset($_GET['email'])) {

echo 
'Subscription request has been received' ;

}

else {

echo 
'

<h1>News Letter Subscription</h1>

<p>Please enter Email Address below and click that button to subscribe newsletter.</p>

<form action="subscription.php" method="GET">

Enter Email Address : <input name="email" type="text">

<button type="submit"> Subscribe </button>

</form>

'
;}