cmwpmm
68.***.***.***looking for ASP similar object in PHP
I got my hands on the following asp file:<html>
<SCRIPT language=VBScript>
dim phone
phone = "<%=Request("num")%>"
'document.write phone
'phone = "6478962219"
dim dialer
set dialer = CreateObject("WebDialer.WebDial")
return1 = dialer.DialNumber(phone, "")
'document.write return1
window.close()
</Script>
</html>
it's used in conjuction with certain CRM software to dial a number through a link. You just build the link with a $_GET['num'] attached and when a user clicks it the computer will dial. The object being constructed here, is there anything similar in php? I haven't been able to find it. Any help would be much appreciated.