Hello,
I have just installed Chronoforms V4 and I have been following the tutorial on how to list multiple rows and edit data.
All went perfectly and I set up custom code in the List Form as follows:
The form Edit_Form_4 exists and works, but when I use this code in the Listing Form and click Edit I get error 404.
I'm not an expert in php, just following the cookbook. All forms are published, it all seems to work, except for the 404.
Can anyone help?
Thanks
Tim
I have just installed Chronoforms V4 and I have been following the tutorial on how to list multiple rows and edit data.
All went perfectly and I set up custom code in the List Form as follows:
<table>
<?php
foreach($form->data['SelectPilot'] as $detail):
?>
<tr>
<td>Name:<?php echo $detail['First_Name_1'];
echo ' ';
echo $detail['Last_Name_1']; ?></td>
<td><a href="index.php?option=com.chronoforms&chronoform=Edit_Form_4&token=<?php echo $detail['cf_uid']; ?>">Edit</a></td>
</tr>
<?php
endforeach;
?>
</table>
The form Edit_Form_4 exists and works, but when I use this code in the Listing Form and click Edit I get error 404.
I'm not an expert in php, just following the cookbook. All forms are published, it all seems to work, except for the 404.
Can anyone help?
Thanks
Tim