Create a Contact Page
-
I would like to create a contact page that looks something like this:
http://img157.imageshack.us/img157/720/screenie19sx.gifThe code I have so far is:
<?php
function sendmail()
{
}
?>
<form name="contactform" method="post" action="<?php sendmail(); ?>">
Send to:<br>
Editor:
<input name="radiobutton" type="radio" value="<?php $id="mail1@domain.com"; ?>">
Webmaster:
<input name="radiobutton" type="radio" value="<?php $id="mail2@domain.com"; ?>">Your Email:
<input name="textfield" type="text" size="50">Message:<br>
<textarea name="textarea" cols="75" rows="8"></textarea><input type="submit" name="Submit" value="Submit">
</form>
What do I add in the function?
The topic ‘Create a Contact Page’ is closed to new replies.