Page 2 of 5 FirstFirst 12345 LastLast
Results 11 to 20 of 47
  1. #11
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Okay, I'll go code a member system, when I hardly know much.

    Ryan, I'll be on MSN later.
    Last edited by Hitman; 06-09-2006 at 04:43 PM.

  2. #12
    Join Date
    Sep 2005
    Posts
    1,604
    Tokens
    0

    Latest Awards:

    Default

    Woot that rocks. Its like one of them pointless but funny games on websites.

  3. #13
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by chris2k6 View Post
    Woot that rocks. Its like one of them pointless but funny games on websites.
    Lol, it's fun to mess with. Yeh, it's very pointless, but as I said fun to mess with. I'll see what else I can come up with that may be funny.

  4. #14
    Join Date
    Aug 2006
    Posts
    181
    Tokens
    0

    Default

    Its not exactly funny, well it didn't make me laugh anyway so you guys must have a weird sence of humour.

  5. #15
    Join Date
    Sep 2005
    Posts
    1,604
    Tokens
    0

    Latest Awards:

    Default

    it like playing this game lol

  6. #16
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    <?
    $name = $_POST[name];
    echo $name;
    ?>

    Not hard Nice tho

  7. #17
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice View Post
    <?
    $name = $_POST[name];
    echo $name;
    ?>

    Not hard Nice tho
    Lol :p Maybe when I learn more I'll be making better more useful things.

    PHP Code:
    <form action="name.php" method="post">
    Enter your name: <input type="content" cols="1" rows="10" 
    <input type="submit" value="Submit" name="Submit"
    </form
    Save as test.html

    PHP Code:
    <?php
    $name 
    $_POST ['name'];
    if (
    $code == " "){
    echo 
    "You didn't enter a name!";
    } else {
    echo 
    "Your name is: "$name ."";
    }
    ?>
    If anybody wants it, not that its much use lol.
    Last edited by Hitman; 06-09-2006 at 06:42 PM.

  8. #18
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    Not hard at all

    Simple but yet very nice

    EDIT: PHP is not supported in Sigs/Posts/Threads/User Titles
    Last edited by Dentafrice1; 06-09-2006 at 06:47 PM.

  9. #19
    Join Date
    Aug 2006
    Location
    Northamptonshire
    Posts
    250
    Tokens
    0

    Default

    Hi tom

    You could use this as an addon

    PHP Code:
    <?php
    $name 
    $_POST ['name'];
    if (
    $name == null){
    echo 
    "So you don't have a name, huh?";
    } elseif(
    $name == "Tom" && "tom" && "thomas" && "thommy") {
    echo 
    "Your name is the same as mine hehe.";
    } elseif(
    $name == "Ryan" && "ryan") {
    echo 
    "Your name is the same as my best mates!";
    } else {
    echo 
    "OMG Your name is '.$name.' omgz...";
    }
    ?>
    Just something extra ^.^
    Last edited by PixelResources; 06-09-2006 at 06:50 PM.

  10. #20
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    That's a little similiar to my first markup in PHP without a tutorial. Rather than your name, it allowed you to enter approximately 30 words and press submit. Then this would appear as the title on the success page.

    That was a few months ago, and I'm very experienced now
    REMOVED

    Edited by jesus (Forum Super Moderator): Please do not have text in your signature which is over size 4.

Page 2 of 5 FirstFirst 12345 LastLast

Posting Permissions

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