Jump to content

Update Twitter from PHP form?


woolyg

Recommended Posts

Hi all,

 

Does anyone know of a script or class that allows a twitter account to be updated from the text inputted into an input form? I want to be able to input text into one of my content management forms, and upon processing the script, have it automatically show on my twitter account.

 

I've done a few searches, but none are jumping out at me..!

 

Thanks

WoolyG

Link to comment
https://forums.phpfreaks.com/topic/201985-update-twitter-from-php-form/
Share on other sites

Hi Ken,

 

Thanks for that - I'll look into it.

 

I found a pretty simplistic bit of code that I'm going to try too:

/* settings */
$username = 'myUser';
$password = '**********';
$format = 'xml'; //alternative: json
$message = 'Tweet goes here!';
/* work */
$result = shell_exec('curl http://twitter.com/statuses/update.'.$format.' -u '.$username.':'.$password.' -d status="'.str_replace('"','\"',$message).'"');
echo $result;

 

Cheers

WoolyG

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.