I am still in need of sending the data/time to the database from a form in a hidden field. I have tried several variations of syntax with no results. I have asked this before but still need to know if anyone has the answer. The form generation work great but I need to have the date and time added to the database automatically when submitted. Without this the form is useless for my purpose.
Does anyone know the exact syntax to use ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
well, you can order a paid customization. See the services page of the project website ( http://phpformgen.sourceforge.net ) for more info. Remember, most of the people posting here are users and not coders, so they might not be able to help you out with coding.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I understand that but there was a discussion where it was mentioned to enter in the hidden field the Date/Time Value but there was no reference to what that value was
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am still in need of sending the data/time to the database from a form in a hidden field. I have tried several variations of syntax with no results. I have asked this before but still need to know if anyone has the answer. The form generation work great but I need to have the date and time added to the database automatically when submitted. Without this the form is useless for my purpose.
Does anyone know the exact syntax to use ?
well, you can order a paid customization. See the services page of the project website ( http://phpformgen.sourceforge.net ) for more info. Remember, most of the people posting here are users and not coders, so they might not be able to help you out with coding.
I understand that but there was a discussion where it was mentioned to enter in the hidden field the Date/Time Value but there was no reference to what that value was
Here's some examples of what I use:
Source:
$date = date("l jS of F Y h:i:s A");
Output looks like:
Monday 16th of August 2004 04:51:57 PM
Source:
$date = date("F jS Y");
Output looks like:
August 16th 2004