Tropo Dialer POC

Quick and dirty Tropo dialer script triggered by a website with a list of numbers and a message to play. Built as a POC Tropo Script <?php call('+1'.$dnis, array("from" => "+1".$ani)); $confirm = "0"; while ( $confirm == "0" && $currentCall->isActive() ) {     $result = ask( $prompt,                      array( "choices" => "confirm( 1, confirm)") );     if ($result->name=="choice")     {         if ($result->value == "confirm")          {              say( "Message receipt Confirmed." );             $confirm = "1";         }     } } hangup(); ?> Server Script <?php echo<<<EOF <html> <head>     <title>Outbound Dialer - Tropo</title>…