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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.