我已经尝试过了,但它不起作用。我怎样才能显示这个日期和时间?在数据库列中定义为“DATETIME”。我需要在mysql中显示这个日期。
$sqldate = mysql_query("select * from table where courseID = '" . $_GET['courseID'] ."' and user = '" . $_GET['userID'] . "'");
$rsdate = mysql_fetch_array($sqldate);
<table>
<tr>
<td>
<?=$rsdate['datetime']?>
</td>
</tr>
</table>