• I would like to create a contact page that looks something like this:
    http://img157.imageshack.us/img157/720/screenie19sx.gif

    The 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?

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Create a Contact Page’ is closed to new replies.