<?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);
 
 
?>
 
 
 |