echo $Name;

Or if register_globals is off in your php.ini, use:

echo $_POST['Name'];

-Rasmus

On Fri, 4 Oct 2002, Shoulder to Shoulder Farm wrote:

> Hi all,
> Sorry, but I REALLY don't want to subscribe to the PHP general list,
> it's so high volume, so here goes. --T
>
> How can I get values that were posted from a form to a PHP document
> turned into string?
> For example:
>
> <form meathod=post action="sendfeedback.php">
> <input type="input" name="Name" />
> </form>
>
> Then in sendfeedback.php, I want to turn that posted value into a string.
> How can I do that?
> Thanks, Taj
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


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

Reply via email to