Re: Another form handling posting question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



EVERY HTTP request is completely independent of the previous/following
ones, unless you specifically tie them together with YOUR code.

If you want to accumulate data from $_POST, start a session
http://php.net/session_start and cram the data you need to keep into
$_SESSION as you go.

On Wed, December 5, 2007 11:36 pm, Mike Smith wrote:
> I am trying to recursively send data to the same form.  Based on the
> data, I
> want to determine which "action" is to be processed.  It appears that
> the
> $_POST is not being cleared out or cached once it is sent to the
> server.
> Here is my code that I'm trying to test with.  It doesn't seem to
> consistently send me to the correct page each time.
>
> <?php
>
>  $process = $_POST['process'];
>
>  if ($process == "Pass")
>   {
>   echo "<form method='POST' action=success.php>";
>   }
>  else
>   {
>   echo "<form method='POST' action=recursive.php>";
>   }
> ?>
>
>  <table border="0" id="table1" width="58">
>   <tr>
>    <td align="center">
>    <input type="radio" checked name="process" value="Pass"
> tabindex="1"></td>
>    <td align="left">Pass</td>
>   </tr>
>   <tr>
>    <td align="center" width="20">
>    <input type="radio" name="process" value="Fail" tabindex="2"></td>
>    <td align="left" width="28">
>    Fail</td>
>   </tr>
>  </table>
>  <input type="submit" value="Submit" name="B1"> <input type="reset"
> value="Reset" name="B2">
> </form>
>
> I want to use a single submit button that will send the "action" to
> the
> right page.
>
> What is the best practice for doing this?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux