Exploit
Exploit

Reputation: 6386

how to call a land line through a website?

i have seen a few sites like prankdial that lets you spoof your number and make a call to a persons cell or home number how is this being done from a website?

Upvotes: 1

Views: 167

Answers (1)

RobertPitt
RobertPitt

Reputation: 57268

You can use COM's to access your local skype installation to dial a number for you, take a look at this library:

You can perform mosts tasks via COM's such as calls, chat, contacts and send messages:

$skype = new COM("Skype4COM.Skype");
$skype->sendSms("+1234567890", "SMS text goes here");

You can download the Native

Upvotes: 2

Related Questions