Jump to content

need help with a form


oracle259

Recommended Posts

This should do it but keep in mind, this is just off the top of my head--it has NOT been tested.

[code]
if (!$_SESSION['formProcessing']){
  display the form somehow
}elseif($_SESSION['formProcessing']==1){
  //check to see if your done with what you're doing.....
  //if you ARE done with the task, set the test variable to 2.
  if ($done){ //<--this variable isn't actually set any where, when you check to see if your task is done, you will decide which way to go.
    $_SESSION['formProcessing'] = 2;
    echo "Processing";
   
    //force it to wait a litle while before reloading the page, then
    //this'll reload the current page.
    for($i;$i<15){
      for($j;$j<4000;$j++){
        echo ".";
      }
    }
   
    header("Location:  " . $_SERVER['PHP_SELF']);
  }else{
    //if the variable is set, but not 1 then the process is done
    echo "Thank you, you will be contacted soon.";
}
[/code]
Link to comment
https://forums.phpfreaks.com/topic/26111-need-help-with-a-form/#findComment-119439
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.