连接数据库出问题
在PHP中获取系统当前日期,但是和数据库中date类型数据匹配出问题。
<?php
$link=mysql_connect('localhost','root','root');
if(!$link){
die('连接失败'.mysql_error());
}
//echo "详细的日期及时间:".date("Y-m-d H:i:s");
$day=date("Y-m-d"); //读取当前时间
echo $day. "<br>";
//$day1=datatime($day);
mysql_select_db('pm25',$link)or die('pm25'.mysql_error());
$result=mysql_query("select * from ceshi where data='day'");
echo '<table align="center" width="80%"border="1">';
echo '<th>PM2.5的值</th><th>日期</th><th>时间</th>';
while($row=mysql_fetch_row($result)){
echo '<tr>';
foreach($row as $data){
echo '<td>'.$data.'</td>';
}
echo '<tr>';
}
echo '</table>';
mysql_free_result($result);
mysql_close($link);
但是页面没有查询的结果: