Adding date at registration |
11/29/2005 7:26:38 PM |
PHPRunner General questions | |
K
ke5rs author
I would like to add the current date & time to my table 'members' in the fields 'Date' & 'Time' when the user registers with the 'resister.php' page. |
|
![]() |
Sergey Kornilov admin 11/30/2005 |
Hi, $fields.=",`Date`, `Time`"; $values.=",now(),now()";
$strMessage=""; // check if entered username already exists |
K
|
ke5rs author 11/30/2005 |
Hi, you can use something like this code to insert the registering date and time to database. Insert this just before this fragment in register.php file.
|