Here&#39;s one for ya.<br><br>I&#39;d like to have a program which &quot;checks&quot; for a certain frequency every 20 minutes or so while I&#39;m not in the room.<br><br>If this frequency happens (and my microphone picks it up, of course) something happens, <br>
<br>I&#39;m thinking something web-like.<br><br>The function below sucks and I&#39;m aware of that.<br><br>Just fishing for any ideas.<br><br>Thanks, amigos!<br><br>-Aaron<br><br><br>$curr_frequency(){<br>    wicked function which listens to the mic every 20 minutes<br>
}<br><br>$frequency = &#39;&#39;;<br>if ($time &gt;= 1200000 )  {  //20 minutes<br>  curr_frequency (&amp;$curr_frequency, $time);<br>  return $frequency;<br>}; <br>        if ($frequency == &#39;2500hz&#39;)  //maybe make this a range {<br>
       do something neato;<br>  }<br><br>}<br>