<?php
require 'Twilio/autoload.php';
use Twilio\Rest\Client;

// Your Account SID and Auth Token from twilio.com/console
$account_sid = 'ACe609eea35c41842d2bd655ed2be1ad71';
$auth_token = 'e1ea081d6a6496f91b007922f198db52';
// In production, these should be environment variables. E.g.:
// $auth_token = $_ENV["TWILIO_ACCOUNT_SID"]

// A Twilio number you own with Voice capabilities
$twilio_number = "+17868081901";

// Where to make a voice call (your cell phone?)
$to_number = "+13057753697";

$client = new Client($account_sid, $auth_token);
$client->account->calls->create(  
    $to_number,
    $twilio_number,
    array(
        "url" => "http://marketing.qlx.com/emu1/twilio/voicecontent/1.xml"
    )
);
?>