Apologies in advance -- symfony amateur here with an inherited project.
I've added the following to apps/frontend/modules/top/templates/indexSuccess.php:
<?php echo form_tag('contents/'.$adv_data->getId()) ?>
<?php echo $sf_params->get('email'); ?>
<?php echo input_tag('email', $sf_params->get('email'))?>
<?php echo submit_tag('Next') ?>
</form>
So then I add the following to apps/frontend/modules/top/actions/actions.class.php in the executeContents() method:
$email = $this->getRequestParameter('email');
$this->getRequest()->setParameter('email', $email);
if (!$this->validateForm()) {
$this->redirect($adv_id); // sends me back to the page with the form up above
}
I'd expect the email parameter to appear but alas it does not.
Parameter, y u no stay?