Hi,

Monday, June 30, 2003, 2:41:59 PM, you wrote:
MJLM> Im a beginner and was hoping if you could help me on passing a value into a
MJLM> form and into another form? Im not sure what do you call that sequence but I
MJLM> hope you could get me into a howto section to do that or give me something
MJLM> nice.

MJLM> Thanks


MJLM> --
MJLM> Louie

Take the value from the first form and pass it in the second using a
hidden field..


//from first form

$value = $_post['value']

//second form

<form action......>
<input type="hidden" name="value" value="<?php echo $value?>">
.
.
.
</form>

-- 
regards,
Tom


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

Reply via email to