Is there any way to have the date and time that a user submitted the form sent in the email I receive? I'm using v3 beta 2 (upgrading soon)
Also, is there a way to redirect them to a thank-you "page" that isn't visible in any menus?
Thanks for any help!
Is there any way to have the date and time that a user submitted the form sent in the email I receive?
yes, you can add a hidden filed with HTML and inside the value attribute add this :
value="<?php echo date("Y-mm-dd H:i:s"); ?>"
2nd one, add the article to a hidden menu!😉
Cheers
Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
sorry to be overly nooobish, but could you please be a bit more specific on where this hidden field is created and where I put it? (and how it ends up in the email)
thanks, this is really cool.
inside the form HTML code box with all other code there :
<input type="text" name"time" value="<?php echo date("Y-mm-dd H:i:s"); ?>">
at your template, write : {time}
let me know!
Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
It worked perfectly, thank you!