blasalle
Posts: 69
|
| Posted: 05/29/2009, 7:49 AM |
|
I have a series of forms that are part of a survey. At the end of each form participants are asked if they want to return at a later time or are finished (radio buttons). If they indicate that they are finished I would like to use that integer value to display a different page the next time the form is called.
I'm thinking of possibly using a php redirect in Custom Code during the Before Show event - something like:
global $Redirect;
$finished = $Container->form_status->GetValue();
if ($finished ==2) {
$Redirect = "finished.php";
}
Does this seem like a reasonable solution?
bernie
_________________
Bernie
University of Utah
Salt Lake City, UT USA |
 |
 |
|