<div dir="ltr">Gentlemen,<br><br>So, from your answers I understand that I have 2 options:<br>1. AMI &quot;Redirect&quot; command<br>2. Asterisk command &quot;ChannelRedirect&quot;<br><br>I&#39;m inclined to prefer the 2nd option, as we&#39;ve never used AMI, but I don&#39;t know if it can be web-initiated.<br>
<br>Basically, we have the following php code:<br>&lt;?php<br>  if( $_POST[&quot;ext&quot;] || $_POST[&quot;dest&quot;] )<br>  {<br>     echo &quot;Selected extension: &quot;. $_POST[&#39;ext&#39;] . &quot;&lt;br /&gt;&quot;;<br>
     echo &quot;Destination Number: &quot;. $_POST[&#39;dest&#39;] . &quot;&lt;br /&gt;&quot;;<br>     // Enter the selected extension&#39;s active call to a conference room<br><br>     // Establish a new call to the entered number<br>
<br>     // Connect the new call to the selected extension&#39;s conference room<br><br>     // Put a disconnect/split button<br><br>     echo &quot;connecting...&lt;br /&gt;&quot;;<br>     <br>     exit();<br>  }<br>?&gt;<br>
&lt;html&gt;<br>&lt;body&gt;<br>  &lt;form action=&quot;&lt;?php $_PHP_SELF ?&gt;&quot; method=&quot;POST&quot;&gt;<br><br>  Extension: <br>    &lt;select name=&quot;ext&quot;&gt;<br>        &lt;option value=&quot;5001&quot;&gt;5001&lt;/option&gt;<br>
        &lt;option value=&quot;5002&quot;&gt;5002&lt;/option&gt;<br>        &lt;option value=&quot;5003&quot;&gt;5003&lt;/option&gt;<br>        &lt;option value=&quot;5004&quot;&gt;5004&lt;/option&gt;<br>    &lt;/select&gt;<br>
<br>  Destination Number: &lt;input type=&quot;text&quot; name=&quot;dest&quot; /&gt;<br><br>  &lt;input type=&quot;Conf&quot; /&gt;<br>  &lt;/form&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;<br><br>To this code, we need to add the relevant functions to perform the tasks specified above, i.e. enter the active call to a conf room, establish the call to the new number and then, link them all together and give an option to quit the conference.<br>
<br>What do you suggest?<br><br>Thanks,<br><br>Michael<br><br><div class="gmail_quote">On Fri, Nov 16, 2012 at 1:17 PM, Aldo Bergamini <span dir="ltr">&lt;<a href="mailto:aaberga@gmail.com" target="_blank">aaberga@gmail.com</a>&gt;</span> wrote:<br>
</div></div>