How do I return the date with mySQL?
For instance when a user registers for the site, you might want to record the date they registered on, and so forth.
To do so, use the CURDATE() function within mysql, like this:
<?php
$todayis = mysql_query("SELECT CURDATE() FROM table");
$itis = mysql_result($todayis,0,0);
echo "Today is: $itis";
?>
Comment on this Question and Answer >>>
ASK A QUESTION
More mysql PHP Questions
How do I order the results of my query?How do I find the number of rows in a result set?
How do I limit the number of rows returned?
How do I update the contents of a table row?
How do I access the current time with mysql?
