I have the following code.  When I call the extension, it either ignores the first "Hello there everyone", or says "hello" and moves on sometime stoping before it finishes hello.  The rest of the text reads fine.  Anyone else have this issue??
<br><br>Thanks!<br><br>&nbsp;require(&#39;/var/lib/asterisk/agi-bin/phpagi.php&#39;);<br><br>&nbsp; $agi = new AGI();<br>&nbsp; $agi-&gt;answer();<br>&nbsp; $agi-&gt;swift(&quot;Hello there everyone &quot;);<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $agi-&gt;swift(&quot;Please press 1 for a&nbsp; search&nbsp; .&quot;);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $result= $agi-&gt;get_data(&#39;beep&#39;,300000000, 1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $zip= $result[&#39;result&#39;];<br><br>&nbsp; $agi-&gt;swift(&quot;That concludes your call.&nbsp; Thank you, Good bye .&quot;);<br>&nbsp; $agi-&gt;hangup();
<br><br>