Mr_J Posted December 4, 2008 Share Posted December 4, 2008 Hi all, This is NOT for my porn site! For users to register, they must enter the detail. Somewhere I lost it... When I click the "SEND REQUEST", nothing happens: <?php session_start(); $MYEMAIL = "xxx@xxx.com"; if ($ACTION=="send-mail") { $sw = ''; if ($disclaim <> '1'){ $sw = '5'; //echo "Disclaimer"; } if ($email <> $email2){ $sw = '4';} if ($merchant."B" == "B"){ $sw = '3';} if ($email."B" == "B"){ $sw = '2';} if ($name."B" == "B"){ $sw = '1';} if ($sw."B" == "B" ): $headers = "From:".$email."\r\n"; $headers .= "Bc: xxx@xxx.com \r\n"; $SUBJECT = "Pcd On-Line Registration"; $MESSAGE .= "Name:\t" .$name. "\n"; $MESSAGE .= "Address:\t" .$adr. "\n"; $MESSAGE .= "Tel:\t\t" .$tel. "\n"; $MESSAGE .= "Email:\t" .$email. "\n"; $MESSAGE .= "Provider:\t" .$merchant. "\n"; $MESSAGE .= "Provider Tel:\t" .$merchantel. "\n"; $MESSAGE .= "Acc No:\t" .$accno. "\n"; $MESSAGE .= "Contract:\t" .$disclaim. "\n"; mail($MYEMAIL,$SUBJECT,$MESSAGE,$headers); header ("Location: thankyfmail.php?mail=preg"); echo "Application e-mailed"; exit; else: $ACTION = nothing; endif; echo "value of err".$sw."<br>"; echo "value of Tel".$tel."<br>"; echo "value Cont-A".$disclaim."<br>"; echo "value Cont-B".$chk[$disclaim]."<br>"; $chk[$disclaim] = "checked"; } ?> <td align="center"><input type="submit" value="Send Request" method="send-mail"></td> For validation: <?Php SWITCH ($sw){ case "1": echo "Please enter your name!"; break; case "2": echo "Please enter your e-mail!"; break; case "3": echo "Please enter your PCD provider!"; break; case "4": echo "Please re-enter your email"; break; } ?> http://medbel.co.za/php/registerpcd.php Any help please? Quote Link to comment Share on other sites More sharing options...
PravinS Posted December 4, 2008 Share Posted December 4, 2008 I saw source of your html, there is no <form..... tag in the page. Quote Link to comment Share on other sites More sharing options...
Mr_J Posted December 4, 2008 Author Share Posted December 4, 2008 I saw source of your html, there is no <form..... tag in the page. I added: <form name="regF" method="POST" action="registerpcd.php"> <input type='hidden' name='ACTION' VALUE="send-mail"> Quote Link to comment Share on other sites More sharing options...
PravinS Posted December 4, 2008 Share Posted December 4, 2008 The form is submitting now. Quote Link to comment Share on other sites More sharing options...
Mr_J Posted December 4, 2008 Author Share Posted December 4, 2008 The form is submitting now. Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.