|
Posted by Geoff Muldoon on 10/19/06 01:46
hinkyeol@gmail.com says...
> in 1st page, there's variable "x1". it's action page is B.
> So, I can use "x1" in B.
>
> $x11 = (int)$_POST['x1'];
>
> B's action page is C
>
> In that case, I want to use "x1" in C.
> So, can I save "x1" in B and use it in C?
In the form on B pass it as a hidden input to C.
<input type="hidden" name="x11" value="$x11">
> for exmaple, can I use following commend in C?
>
> $x22 = (int)$_POST['x11'];
Yes, if you do the above.
GM
[Back to original message]
|