turles Posted November 6, 2006 Share Posted November 6, 2006 Hi I'm new to php and thus far I have created a html form. But I am at a complete loss as to, how make a background php mailer to go with it I was wondering if anyone might be able to help me... Here is the code for the html side.[code]<form id="Contact" name="Contact Form" method="POST" action="webmailer.php"> <div align="center"> <table width="300"> <tr> <td width="143"><label>Name</label></td> <td width="147"><label> <input name="Name" type="text" id="Name" /> </label></td> </tr> <tr> <td><label>Email</label> </label></td> <td><input name="Email" type="text" id="Email" /></td> </tr> <tr> <td><label>Freebie 1</label></td> <td><label><input name="plans" type="radio" Value="Freebie 1" checked="checked" /></label></td> </tr> <tr> <td><label>Freebie 2</label></td> <td><label><input name="plans" type="radio" Value="Freebie 2" /></label></td> </tr> <tr> <td>Basic AU$10.00</td> <td><label><input name="plans" type="radio" value="Basic" /></label></td> </tr> <tr> <td><label>Standard AU$15.00</label></td> <td><label> <input type="radio" name="plans" value="Standard" /> </label></td> </tr> <tr> <td><label>Advanced AU$20.00</label></td> <td><label> <input type="radio" name="plans" value="Advanced" /> </label></td> </tr> <tr> <td><label>Xtreme AUD$35.00</label></td> <td><input type="radio" name="plans" value="Xtreme" /></td> </tr> <tr> <td>User Name </td> <td><label> <input name="Username" type="text" id="Username" maxlength="8" /> </label></td> </tr> <tr> <td><label>Domain</label> </label></td> <td><input name="Domain" type="text" id="Domain" /></td> </tr> <tr> <td>Password</td> <td><label> <input name="Password" type="password" id="Password" maxlength="8" /> </label></td> </tr> <tr> <td height="21">Confirm Password </td> <td><input name="cpassword" type="password" id="cpassword" maxlength="8" /></td> </tr> <tr> <td height="21"> </td> <td><label> <input name="Reset" type="reset" id="Reset" value="Reset" /> <input type="submit" name="Submit" value="Submit" /> </label></td> </tr> </table> </div> <label><br /> </label></form></body></html>[/code]Thank you in advance. :) Link to comment https://forums.phpfreaks.com/topic/26287-need-help-with-background-php/ Share on other sites More sharing options...
JasonLewis Posted November 6, 2006 Share Posted November 6, 2006 do you no any basic php. cause this would help. if you no the basics, like variables, if statements etc then all you need now is the mail function. http://www.php.net/mail should tell you how to use it. Link to comment https://forums.phpfreaks.com/topic/26287-need-help-with-background-php/#findComment-120222 Share on other sites More sharing options...
turles Posted November 6, 2006 Author Share Posted November 6, 2006 unfortunately I am a complete newb when it comes to php. Link to comment https://forums.phpfreaks.com/topic/26287-need-help-with-background-php/#findComment-120233 Share on other sites More sharing options...
JasonLewis Posted November 6, 2006 Share Posted November 6, 2006 if you no absolutly zilch on php then i would sugest learning the basics of it. just browse around the phpfreaks website or others for tutorials on php basics. Link to comment https://forums.phpfreaks.com/topic/26287-need-help-with-background-php/#findComment-120242 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.