Hi all,
I have recently been given a CakePHP website to manage having never worked on CakePHP before.
My client is asking me to create a new form and show it on the front end. I have created a form in the CMS called ‘testing’ and am trying to show it on the front end with the following code:
<?= $this->Captcha->replaceStart('testing') ?>{form.testing.field.name}
<?= $this->Captcha->formEnd(); ?>I have created the ‘name’ field in the CMS under the testing form, but nothing shows on the front end.
There is an existing form called ‘Contact form’ which shows with the following code:
<?= $this->Captcha->replaceStart('contact') ?>{form.contact.field.name}
<?= $this->Captcha->formEnd(); ?>I don’t understand what i’m missing. It must be something to do with the form name? Any advise would be appreciated!
Thanks