Results 1 to 2 of 2

Thread: rly simple...

  1. #1
    Join Date
    Aug 2008
    Posts
    206
    Tokens
    0

    Default rly simple...

    Heya!!!!
    Just wondering.. it's pretty simple I guess..

    I want a form where on a page (which will be pass protected) there is a box.
    In that box whatever I type (html pref) will show somewhere else.

    For instance, there will be a box then somewhere on a page I put a code and it shows what was typed in that box..

    If that makes sense lol!
    thanks in advance.

  2. #2
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    Hi,

    Simply, make a html form which posts an input box to a php file, in the php file just have something like this;

    PHP Code:
    <?php

    $posted 
    $_POST'name_of_input_form' ];

    echo 
    $posted;

    ?>

Posting Permissions

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