Displaying 1 result from an estimated 1 matches for "txtcallernumb".
Did you mean:
txtcallernumber
2006 Dec 29
0
PHP to call script
...----------------------------------------------------------------
#Should edit some things below this point to make this script work
#--------------------------------------------------------------------------------------------
#get the caller's number from the form
$strCallerNumber = $_POST['txtcallernumber'];
$strChannel = $strCallerNumber;
$strCallerId = $strCallerNumber;
#get the phone number from the posted form
$strExten = $_POST['txtphonenumber'];
$callNumber = $strExten;
#specify the caller id for the call
$strCallerId = "Web will call <$callNumber>";
$length...