change $_post to $_request ....
$results = $mysms->send($_POST['to'],$_POST['from'],$message);
and add if ... else
if true ( header('location send.php?Action=OK');
<?php
if ( $_request['Action'] == 'OK' )
{
print "msg sent";
}
else
{
print "bla bla";
}