Jump to content

Email Form


bigrossco

Recommended Posts

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">

Link to comment
https://forums.phpfreaks.com/topic/39153-email-form/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.