0
我想要做的是提取一個數組的元素,並運行與數組元素作爲條件的SQL查詢。我面臨的問題是查詢不返回任何內容。代碼如下:與數組元素運行SQL查詢
//extracting the array elements
foreach ($t as $value) {
extract($value);
}
$sql = "SELECT * FROM daily_log where employee_log_id='$employee_log_id' AND log_date='$value'</br>";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
echo $row['in_time'];
echo $row['out_time'];
echo $ row ['in_time']和echo $ row ['out_time'];沒有顯示任何東西。
有誰能幫我弄清楚問題是什麼 在此先感謝。