Jump to content

refresh with sound if new record found


rbragg

Recommended Posts

I have a call center page with a meta tag to refresh every 60 seconds. So, every 60 seconds the page checks for new records in my db.

 

I would like to have a sound play upon refresh only if a new record is found and displayed. I imagine that I would start at the top of the page with some sort of record count. My page uses sessions, so if there is a larger count than at the last check then the sound would play. Am I heading in the right direction?

 

Could someone help me get started? Thanks in advance.

Link to comment
Share on other sites

sure...

 

do your loop info from the database, add a $count++;

 

if($_SESSION[count]<$count){
$_SESSION[count]=$count;
echo 'encode your sound here';
}

 

just as an fyi... if you count by sessions... when you first login... it'll beep wether it finds anything more there or not... lol

Link to comment
Share on other sites

I haven't any yet other than my select statement and display:

<?php
$queryAll = "
SELECT *
FROM vigil_student, vigil_operator, vigil_call
WHERE vigil_student.studentID = vigil_call.studentID
AND vigil_operator.operatorID = vigil_call.operatorID
ORDER by time DESC
";  
$allResults = mysql_query($queryAll) or die( "All query failed: " . mysql_error() );			  

# count for alternate colors
$countRows = 0;

while($all = mysql_fetch_array( $allResults )) 
{ 
  # alternate colors for every row
  if ($countRows++ % 2 == 0){
  $style = "background-color: #F9F9F9;";
  } else {
  $style = "background-color: #FFFFFF;";
  }

$time = $all['time'];
echo "<tr class='style1' style='$style'><td>" . date("M j, y @ h:i a", strtotime($time) ) . "</td>";
echo "<td>" . $all['first'] . " " . $all['last'] . "</td>";
echo "<td>" . $all['hall'] . "</td>";
echo "<td>" . $all['room'] . "</td>";
echo "<td><img src='images/" . $all['status'] . ".gif'></td>";
echo "<td><a href='displayDetails.php?call=" . $all['callID'] . "'>details</a></td></tr>";
}

mysql_close;
?>

Link to comment
Share on other sites

if($_SESSION[count]<$count){
$_SESSION[count]=$count;
echo 'encode your sound here';
}

 

I have a field (PK) in a table called callID that increments. This is what I would like to use for counting. So, with your logic would I do something like this?

 

<?php
while($all = mysql_fetch_array( $allResults )) 
{ 
  $countNew++;
  $countLast = $all['callID'];

  if $countLast < $countNew 
  {
    $countNew = $countLast;
    echo 'encode sound';
  }
}?>

 

Am I getting what you're saying?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.