<div dir="ltr">Gentlemen,<br><br>So, from your answers I understand that I have 2 options:<br>1. AMI "Redirect" command<br>2. Asterisk command "ChannelRedirect"<br><br>I'm inclined to prefer the 2nd option, as we've never used AMI, but I don't know if it can be web-initiated.<br>
<br>Basically, we have the following php code:<br><?php<br> if( $_POST["ext"] || $_POST["dest"] )<br> {<br> echo "Selected extension: ". $_POST['ext'] . "<br />";<br>
echo "Destination Number: ". $_POST['dest'] . "<br />";<br> // Enter the selected extension'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's conference room<br><br> // Put a disconnect/split button<br><br> echo "connecting...<br />";<br> <br> exit();<br> }<br>?><br>
<html><br><body><br> <form action="<?php $_PHP_SELF ?>" method="POST"><br><br> Extension: <br> <select name="ext"><br> <option value="5001">5001</option><br>
<option value="5002">5002</option><br> <option value="5003">5003</option><br> <option value="5004">5004</option><br> </select><br>
<br> Destination Number: <input type="text" name="dest" /><br><br> <input type="Conf" /><br> </form><br></body><br></html><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"><<a href="mailto:aaberga@gmail.com" target="_blank">aaberga@gmail.com</a>></span> wrote:<br>
</div></div>