[twitter-dev] Posting Status Update with PHP

2010-10-29 Thread sdenike
Am I missing something along the lines of how the message should be encoded when posted to Twitter? I have tried urlencode, add slashes, strip slashes etc etc and no matter what I try when I post something like It's it will end up on twitter as It\'s Please advise. Thanks -- Twitter developer

Re: [twitter-dev] Posting Status Update with PHP

2010-10-29 Thread Edward Hotchkiss
works fine for me - public function Tweet($tweet) { $parameters = array(status = $tweet); $status = $this-connection-post(statuses/update, $parameters); $this-Stats(statuses/update, $status, $this-connection- http_code, $parameters); } Best,