Results 1 to 7 of 7
  1. #1
    Join Date
    Jan 2006
    Location
    England
    Posts
    2,028
    Tokens
    0

    Latest Awards:

    Default Submission Forms anyone help?

    I currently run a radio but i would like to open a request line what would the html be for say a 3 boxed form with a button to send the boxes to a email address ? Any help will be repped

    Avatar removed by Agesilaus (Forum Super Moderator): Avatar image was exceeding the size limit for your usergroup.

  2. #2
    Join Date
    Jun 2005
    Location
    Manchester
    Posts
    3,187
    Tokens
    0

    Latest Awards:

    Default

    Hey,

    I suggest using a PHP form to submit, This is a basic one off P2L as I honestly could not be bothered writing you one.

    HTML Code:
    <table width="400" border="0" align="center" cellpadding="3" cellspacing="1">
    <tr>
    <td><strong>Contact Form </strong></td>
    </tr>
    </table>
    
    <table width="400" border="0" align="center" cellpadding="0" cellspacing="1">
    <tr>
    <td><form name="form1" method="post" action="send_contact.php">
    <table width="100%" border="0" cellspacing="1" cellpadding="3">
    <tr>
    <td width="16%">Subject</td>
    <td width="2%">:</td>
    <td width="82%"><input name="subject" type="text" id="subject" size="50"></td>
    </tr>
    <tr>
    <td>Detail</td>
    <td>:</td>
    <td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td>
    </tr>
    <tr>
    <td>Name</td>
    <td>:</td>
    <td><input name="name" type="text" id="name" size="50"></td>
    </tr>
    <tr>
    <td>Email</td>
    <td>:</td>
    <td><input name="customer_mail" type="text" id="customer_mail" size="50"></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td>
    </tr>
    </table>
    </form>
    </td>
    </tr>
    </table>
    Style and change that as much as you wish.

    And then contact.php

    PHP Code:
    <?php
    // Contact subject
    $subject ="$subject"
    // Details
    $message="$detail"

    // Mail of sender
    $mail_from="$customer_mail"
    // From 
    $header="from: $name <$mail_from>"

    // Enter your email address
    $to ='[email protected]'

    $send_contact=mail($to,$subject,$message,$header);

    // Check, if message sent to your email 
    // display message "We've recived your information"
    if($send_contact){
    echo 
    "We've recived your contact information";
    }
    else {
    echo 
    "ERROR";
    }
    ?>
    Change that where your supposed to.

    - Dan

  3. #3
    Join Date
    Jan 2006
    Location
    England
    Posts
    2,028
    Tokens
    0

    Latest Awards:

    Default

    How do i make a .php file ... Sorry if i sound stupid but i only know basic html!

    Avatar removed by Agesilaus (Forum Super Moderator): Avatar image was exceeding the size limit for your usergroup.

  4. #4
    Join Date
    Jun 2005
    Location
    Manchester
    Posts
    3,187
    Tokens
    0

    Latest Awards:

    Default

    Hey,

    Instead of saving the extension in Notepad to .html/html type in contact.php and it's saved as a PHP file.

    - Dan

  5. #5
    Join Date
    Jan 2006
    Location
    England
    Posts
    2,028
    Tokens
    0

    Latest Awards:

    Default

    o lol Sorry

    Avatar removed by Agesilaus (Forum Super Moderator): Avatar image was exceeding the size limit for your usergroup.

  6. #6
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by JesusOfSuburbia
    o lol Sorry
    sounds stupid but does ure host support php?

  7. #7
    Join Date
    Jan 2006
    Location
    England
    Posts
    2,028
    Tokens
    0

    Latest Awards:

    Default

    Everythung will uplodad but it just shows whats oin that php page...

    Avatar removed by Agesilaus (Forum Super Moderator): Avatar image was exceeding the size limit for your usergroup.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •