Page 3 of 3 FirstFirst 123
Results 21 to 23 of 23
  1. #21
    Join Date
    Aug 2005
    Location
    Spain
    Posts
    1,367
    Tokens
    0

    Latest Awards:

    Default

    can u rite code out coz i dnt get it
    Quote Originally Posted by Habbo-Mike2005
    ah, u've put some of the imput fields before the <form.... part, everything must be after that part

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

    Latest Awards:

    Default

    You should stop asking people to do stuff for you.

    Go to www.Htmlgoodies.com and luck at the forms bit learn yourself.

  3. #23
    Join Date
    Dec 2004
    Location
    UK
    Posts
    534
    Tokens
    141

    Default

    I THINK THE PROBLEM WAS THAT U NEEDED TO MAKE JOBS.HTM TO JOBS.PHP
    Right Anyways posted this,
    .................................................. ............

    contact.php
    <form id="form" name="contact" action="send.php" method="post">Habbo Name:
    <input type="text" value="habbo" name="Habbo Name">
    <br>Emal:
    <input type="text" value="email" name="Email"> </form>
    <form action="send.php" method="post">
    <p><select name="Jobs">
    <option value="dj" selected="selected">Dj</option>
    <option value="mod">Moderator</option>
    <option value="tvmaker">Tv Maker</option>
    <option value="">flash</option>Flash Maker
    <option value="game">Game Maker</option>
    <option value="alt">Alteration Artist</option>
    <option value="news">News Reporter</option>
    <option value="php">Php Expert</option>
    <option value="html">Html Expert</option></select> </p>
    <div><textarea rows="10" cols="30" value="msg">Experiences Have You Got?
    </textarea> </div>
    <div>&nbsp;</div>
    <p><textarea rows="10" cols="30" value="msg1">Why You Want The Job?
    </textarea> </p>
    <div>
    <input type="button" value="Submit My Job Application!"> </div></form>
    .................................................
    send.php
    <?php

    if ($_SERVER['REQUEST_METHOD'] != 'GET'){

    $habbo = $_POST['habbo'];
    $email = $_POST['email'];
    $jobs = $_POST['Jobs'];
    $message = $_POST['msg'];
    $message2 = $_POST['msg1'];
    $messig = "
    Habbo Name: $habbo
    \n
    Email Address: $email
    \n
    Job: $jobs
    \n
    Experience you have?: $message
    \n
    Why do you want the job?: $message2


    ";

    $subject = $habbo;

    mail("[email protected]", $subject, $messig);
    header("Location: thanks.html");
    }
    else
    {
    echo 'ERROR';
    }

    ?>
    Post Count: :eusa_danc 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 1000 :eusa_danc

Page 3 of 3 FirstFirst 123

Posting Permissions

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