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
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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.