Thank you all for helping me. I requested for the intermediate lvl php and I am granted my request =). However I tried to send mail just now using my code:
<html><head><title>LabLink: Contact Us!</title></head><body><?phpif (!$_POST['submit']){?><form method="post">Username:<br /> <input type="text" name="usernow"><br />Please enter your email here:<br /> <input type="text" name="email"><br /><input type="submit" name="submit" value="Change Password"><br /></form><?php} else {$emailer=$_POST['email'];$headers = "From:JiamTaoLoTi@hotmail.com\r\n";$headers .= "Reply-To:JiamTaoLoTi@hotmail.com\r\n";$headers .= "Content-Type: text/html;\r\n charset=\"iso-8859-1\"\r\n";$body ="<html> <head> <title>Email!</title></head><body><p>Hi, Thank you for posting this query!</p></body></html>";mail("$emailer","Testing",$body,$headers);}?></body></html>
it does not work can please help me?