bigrossco Posted February 19, 2007 Share Posted February 19, 2007 I have the form below and want it to email what is input to a specified address but unsure of how to do this Thanks, Ross <form> Name:<br> <input type="text" name="name" value="Name" size="20"> <br> Contact Number:<br> <input type="text" name="number" value="Phone Number" size="20"> <br> Email Address:<br> <input type="text" name="mail" value="Email Address" size="20"> <br> <script language="javascript"> var disable_empty_list = true; </script> <script language="javascript" src="chainedselects.js"></script> <script language="javascript" src="content_link.js"></script> <script language="javascript"> function openLink(url) { if (url != "") { location.href = url; } else { alert("Please select a car make / model"); } } </script> </head> <body onload="initListGroup('links', document.forms[0].category, document.forms[0].site);"> <table align="left" cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td> <form> Make: <br> <select name="category" style="width:180px" name="make"></select> <br> Model: <br> <select name="site" style="width:180px" name="model"></select> </form> </td></tr></table> <br><br><br><br><br><br><br><br> Additional Requirments:<br> <textarea rows="10" cols="30"> </textarea> <br><br><br> <input type="submit" value="Send"> Quote Link to comment Share on other sites More sharing options...
fenway Posted February 19, 2007 Share Posted February 19, 2007 You need a server-side script do this for you... check the PHP help forum Quote Link to comment Share on other sites More sharing options...
weknowtheworld Posted February 20, 2007 Share Posted February 20, 2007 Search for free email script in PHP on internet.. 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.