Login   Register  
PHP Classes
elePHPant
Icontem

File: smsTwitter.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2009-04-28 06:36
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);

?>