Reputation: 6386
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
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