Results 1 to 9 of 9
  1. #1

    Default Form help needed

    Ok I know abit how to make a form but the problem is I can only make them with limited submission. Like , the one I have only can get 50 submits a month! Can some1 explain me (with codes) how to make a form with unlimited submissions plz

    Would be great
    www.habbo-works.tk
    Normal for you , Strange for us!

  2. #2
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    Just write a php form handler :| its as simple as abc.


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  3. #3

    Default

    lol Not experienced with php.. Can you do it plz? :p
    www.habbo-works.tk
    Normal for you , Strange for us!

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

    Latest Awards:

    Default

    Try reading Mentors tutorial found in his sig, also www.ThyBag.co.uk has a new PHP form handler.

    - Dan

  5. #5
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    If you give me the required fields then I might do.. but Dan's suggestion is good that way you will learn something.


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  6. #6

    Default

    Can you please make it for me splinter? plz

    This are the required fields:

    *Habbo name:
    *E-mailadress:
    *Subject : -drop down menu with following info : contact us , questions , *ideas , comments , link us , jobs-
    *A box with the name :Comment
    *and a submit button
    www.habbo-works.tk
    Normal for you , Strange for us!

  7. #7
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    PHP Code:
    <?php
    $habboname 
    $_POST['habboname'];
    $email $_POST['email'];
    $subject $_POST['subject'];
    $comment $_POST['comment'];
    $ip $_SERVER['REMOTE_ADDR'];
    if((!
    $habboname) or (!$email) or (!$comment)) {
    echo 
    "You havent filled in the contact form properly!";
    exit();
    }
    else {
    $message "
    Name: 
    $habboname \n
    Email: 
    $email \n
    Subject: 
    $subject \n
    Comment: 
    $comment \n
    IP: 
    $ip";
    mail("YOUR EMAIL ADDRESS!"$message$subject);
    header("Location: thanks.html");
    }
    ?>


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  8. #8

    Default

    Thanks but do I need to add somthing because it keeps getting me to the "You havent filled in the contact form properly!" where can i find the form itself?
    www.habbo-works.tk
    Normal for you , Strange for us!

  9. #9
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    Just write it in html its not that hard.


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

Posting Permissions

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