I have included that but my scripts goes silent at<br><br>AGI Rx &lt;&lt; EXEC Flite &quot;Hello 1215, you have dialed 1220.&quot;<br>AGI Tx &gt;&gt; 200 result=0<br><br>Below is my script<br><br>#!/usr/bin/php -q<br>     &lt;?php<br>
   <br>     <br>      set_time_limit(30);<br>      require(&#39;phpagi.php&#39;);<br><br>      error_reporting(E_ALL);<br>    <br>      $agi = new AGI();<br>      $asm = $agi-&gt;new_AsteriskManager(); <br>      $agi-&gt;answer();<br>
      $callext = $agi-&gt;get_variable(&quot;DNID&quot;);<br>      $callext=$callext[&#39;data&#39;];<br>      $callid = $agi-&gt;get_variable(&quot;CALLERID(num)&quot;);<br>      $callid=$callid[&#39;data&#39;];<br>     <br>
      $agi-&gt;exec(&quot;Flite&quot;,&quot;\&quot;Hello $callid, you have dialed $callext.\&quot;&quot;);<br>      <br>      $asm-&gt;command(&quot;show hints&quot;);<br>    <br>     $agi-&gt;exec(&quot;flite&quot;,&quot;\&quot;Goodbye\&quot;&quot;);<br>
      $agi-&gt;hangup();<br>   ?&gt;<br>