vote up 0 vote down star

Hello,

Does anyone have any experience using php to send an sms with skype

I want the user off the website to use one the forms and give them a choice if they want to send an sms to do some request. First it will have to check for the availabillity off skype on the clients computer, if so it should send an sms. I already have the users mobile number in the database when he logs to the website.

Maybe, I have to use a combination off javascript and php?

I see that skype has a call.php script, but I cannot see to understand how it is supposed to be used. And also how to ajust it to send sms messages.

If anyone can give me some pointers, that would be helpfull.

If skype is to closed off, does anyone know a good sms service to implement in the website?

Regards, Richard

flag

68% accept rate
Why skype and SMS? Could you just use SMS? – Phill Pafford Aug 27 at 15:17
How would I go about that then. I am not to familiar with it. I just know that there are a lot off third party's I do not know a good one. – Richard Aug 27 at 20:44
what exactly are you trying to do? There are a couple of different approaches you could do. – Phill Pafford Aug 28 at 13:48
sending confirmations if user has opted for that. It's not good to depend if they had skype installed, if it where at all possible to do something with it. The better approach is to use a third party, clickatell is great. You can test there api's and not to expensive either. – Richard Oct 20 at 9:52

2 Answers

vote up 1 vote down check

If you're running PHP on Windows, you can use the COM wrapper for PHP to interface with Skype4COM. I haven't tested it, but following the examples from the Skype4COM documentation, this should work:

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

However, this would use the instance of Skype running on your server. It is certainly impossible to interface with the instance of Skype running on your client's machine using client-side JavaScript. Some basic interfacing can be done with MSIE and VBScript, but I think that this way the functionality would be very limited as well, because it would be very insecure if it wasn't limited.

link|flag
thanks, that probably answerd my question. I cannot be interactive with the skypeclient I don't know how to run skype in an shared host environment, but that would not be a good idea either. because off all logons to skype. Not very user friendly. I have to look for some sms gateway then. I don't know any? – Richard Aug 27 at 14:19
vote up 0 vote down

no, php is a server side scripting language, you cannot access your clients’ pcs with it. and i doubt it is possible to call skype from javascript …

link|flag
those buttons also launch skype with jscript, I believe.// oh, you have to have an access key, I think.// I have read so much know, I diddn't find anything usefull yet. – Richard Aug 27 at 10:35
jscript != javascript. and which buttons are you talking about? – knittl Aug 27 at 10:43
those buttons on the skype site – Richard Aug 27 at 11:17
I don't think there is a user friendly way to use skype for sms messages this way. I have to think about other ways then I think. – Richard Aug 27 at 11:22
1  
i bet they use some pseudo protocol handlers like skype:// or call:// — have a look at those – knittl Aug 27 at 11:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.