<?php
//www.webinfopedia.com
//http://www.webinfopedia.com/auto-tweet-with-oauth-in-php.html esta es la pagina de donde saque la informacion pero en estos instante no funciona la pagina
$consumerKey = 'mi consumer key';
$consumerSecret = ' mi consumer secret';
$oAuthToken = 'mi oAuthToken';
$oAuthSecret = 'mi oAuthSecret';
require_once('twitteroauth.php'); // este es un archivo que me descargue
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);
require_once("db.php"); // este es mi archivo de conexion
$sql=mysql_query("select title from tweets order by rand()");
$showfetch=mysql_fetch_array($sql);
$tweet->post('statuses/update', array('status' => $showfetch['title'] ));
?>