PHP Classes

File: smsTwitter.php

Recommend this page to a friend!
  Classes of Dharmveer Motyar   SMS Twitter to India   smsTwitter.php   Download  
File: smsTwitter.php
Role: Example script
Content type: text/plain
Description: example
Class: SMS Twitter to India
Send SMS messages when Twitter status is update
Author: By
Last change: not a reason
Date: 14 years ago
Size: 351 bytes
 

Contents

Class file image Download
<?php

include_once('rssTwitter.php');
include_once(
'smsClass.php');
$twitter = new TwiterRSS();

$doing = $twitter->getRSS('http://twitter.com/statuses/user_timeline/29941232.rss');

$msgd = $doing[0]['desc'];


$msg= new SMS('mycookie');

$msg->login('username','password');

$msg->sendSMS('urname', 'notosendSMS', $msgd);

?>