Hi,
I have a form that is setup to display "Form Review" page. Once the reviewd form is submitted, I need to display the submitted data again instead of the "success" page.
In confirm.php I uncommented unset($_SESSION['review_id']); at the top of the page, and around line 60 a made some changes that look like this:
if(!empty($_GET['done'])){
if(empty($_SESSION['review_id'])){
die("Your session has been expired. Please <a href='view.php?id={$form_id}'>click here</a> to start again.");
}else{
$record_id = $_SESSION['review_id'];
}
$markup = display_form_review($form_id,$record_id);
}
For the time being, I'm just trying to redisplay the form, but this time I don't get any values. I get the "Labels" on the form, but not the data.
Can anyone help?
Thank you
