In mysql, I have a field defined as a time stamp. It is storing value
as 0000-00-00 00:00:00. It to store it in seconds.
<?PHP
$entered = mktime();
echo "<INPUT TYPE='text' NAME='$entered' VALUE='$entered ' SIZE='13'
READONLY>";
?>
What am i doing wrong?
as 0000-00-00 00:00:00. It to store it in seconds.
<?PHP
$entered = mktime();
echo "<INPUT TYPE='text' NAME='$entered' VALUE='$entered ' SIZE='13'
READONLY>";
?>
What am i doing wrong?
Comment