Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Help me ! ^_^

  1. #11
    Temporary Guest

    Default

    Okay for 1. this is easy its just like a form, make the form all the options you want like name message and e-mail. and then make a "Handler" for this
    in the handler it must send the data to a text document, (Make one in the cpanel" and for all this to work make sure in the form the action is "your-handler-here.php" and if you want the shoutbox and the data all on the one page just
    <?
    include ('data.txt');
    ?>
    or the easier include is
    <?
    include "data.txt";
    ?>

  2. #12
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    Simple.

    PHP Code:
    Whats your name?
    <form method='post'>
    <input type=text name='name' size=20>
    </form>
    Hello there <?php echo $name?>
    kinda quit.

Page 2 of 2 FirstFirst 12

Posting Permissions

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