Hi
I have at last begun to convert my site from V4 to V5. In V4 I referenced some of the form variables..
For example
I gather that they have changed in V5 to
Is there some table, tutorial or whatever that shows the equivalent V5 to V4 form variables?
Regards
Nick
I have at last begun to convert my site from V4 to V5. In V4 I referenced some of the form variables..
For example
<h1>hook <?php echo $form->form_name;?></h1>
I gather that they have changed in V5 to
<h1>hook <?php echo $form->form['Form']['title'];?></h1>
Is there some table, tutorial or whatever that shows the equivalent V5 to V4 form variables?
Regards
Nick
Hi Nick,
There is no list that I know of, though Max might have one,
The two main changes are the form name which you have listed and uploaded file info is now in $form->files.
If I need something I usually add a Custom code action to dump the $form object and then hunt for what I need
Bob
There is no list that I know of, though Max might have one,
The two main changes are the form name which you have listed and uploaded file info is now in $form->files.
If I need something I usually add a Custom code action to dump the $form object and then hunt for what I need
<?php
echo'<div>$form: '.print_r($form, true).'</div>';
?>
Bob
This topic is locked and no more replies can be posted.
