当我收到新订单时,我需要帮助添加声音,我在1分钟时有一个自动刷新,而且我还有一个嵌入式声音。但是我想播放那个声音,只要新订单不是每次刷新都会到达,我现在也不知道如何制作它。
$query="select * from Order where Stare=0 order by ID_Order desc";
$result = mysql_query($query)
or die("query failed: " . mysql_error());
while ($row = mysql_fetch_array($result))
{
$id_order=$row['ID_Order'];
$id_oferta=$row['ID_Oferta'];
$nume=$row['Nume'];
$prenume=$row['Prenume'];
$nume_tot=' '.$nume.' '.$prenume.'';
echo'<tr><td>'.$id_order.'</td>
<td>'.$id_oferta.'</td>
<td>'.$nume_tot.'</td>
</tr>';
echo' <embed src="sounds/button-9.mp3" autostart="true" hidden="true" loop="true" name="jukebox"> ';
}
答案 0 :(得分:0)
您需要保存上次查询的状态,并将其与当前查询进行比较。
您可以使用会话:
// at the top of your script
sesstion_start();
// in your loop
$last_order = ID_of_the_first_row_found; // only save the first row ID, use a boolean or counter to keep track of that
// after your loop
if (!isset($_SESSION['last_order']) || $last_order !== $_SESSION['last_order'])
{
// add the sound
}
$_SESSION['last_order'] = $last_order;
理想情况下,您可以使用ajax在javascript中进行刷新,这样您就不必刷新整个页面并获得更好的用户体验。