Hi,
If your register_globals is off then you will need to use
$_GETand $_POST  to get the data from the form.

echo $_POST['Name'];

Lee

"Chris Jackson" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi all:
> Im new to php and i have an isue.
>
> php4.2.3 windows 2000 advanced server
>
>
> I create a simple form page that posts back to its self and im unable to
> retreive the posted form data to display on the page.
>
> it seems like all my GLOBAL amd SESSION stuff isnt working.
> sample code:
>
>
> <form name="form" method="post" action="thispage.php">
> Your Name<br>
> <input type="text" name="Name" value="<?PHP $Name ?>"><br>
> <input type="submit" name="Submit" value="Submit">
> </form>
>
> Im thinking that it may be a setting in the php.ini file but i dont know..
> Please help.
>
> Thanks.
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to