将检索到的值存储在变量php mysql中

时间:2013-03-23 11:29:40

标签: php mysql timestamp

$check="SELECT timestamp 
        FROM med_buy
        WHERE patient_id='$pid' AND med_id='$mid'
        ORDER BY timestamp DESC";

我正在使用此代码我想存储从数据库返回的最高值 我想知道当天的时间戳,请帮助我。

1 个答案:

答案 0 :(得分:0)

添加限制1以仅获取顶行然后使用

$data = mysql_query($check);
$data = mysql_fetch_assoc($data);
$timestamp = $data['timestamp'];

然后检查当天,使用

if(date('Ymd') == date('Ymd', strtotime($timestamp))
{
   echo "today!";
}

希望这有帮助