1

当我收到新订单时,我需要帮助来添加声音,我有 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"> ';

        }
4

1 回答 1

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 中进行刷新,这样您就不必刷新整个页面并获得更好的用户体验。

于 2013-02-21T12:53:23.623 回答