Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Can one have both create and edit databound forms inside a clonable template [text.php]?

Something like this:
Code: Select all
<cms:form masterpage='test.php' mode='create' enctype='multipart/form-data' method='post' anchor='0' >

&
Code: Select all
<cms:form masterpage=k_template_name mode='edit' enctype='multipart/form-data' page_id=k_page_id method='post' anchor='0' >


I remember trying it once but the edit form was not working if I had both forms while each form, if loaded on its own worked nice. Is there some kind of restriction or conflict having both there at once ? I will try to recreate the issue tonight when I get at the office.
How is it that every time after I take the time to write a question, I come up with the answer myself? :lol:

The issue is that while I was using
Code: Select all
 <?php include_once("edit.php") ?>
and
Code: Select all
<?php include_once("ask_test.php") ?>
to add my forms and keep my files clean, I didn't realize that I was using setting
Code: Select all
<cms:set submit_success="<cms:get_flash 'submit_success' />" />
twice.

Don't do that :lol: It will mess everything up. Once is enough for both forms.
2 posts Page 1 of 1