hi
i am using the abraham’ tweeter oauth library to post status updates to tweeter
when i post some text in English it works good but when i try to post Arabic content it gives error
can any one help??
any sample code will be appreciated
my current code
include 'lib/EpiCurl.php';
include 'lib/EpiOAuth.php';
include 'lib/EpiTwitter.php';
include 'lib/secret.php';
header("Content-Type: text/html; charset=UTF-8");
$twitterObj = new EpiTwitter($consumer_key, $consumer_secret);
$twitterObj->setToken($_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);
$update_status = $twitterObj->post_statusesUpdate(array('status' => "الخيال اهلا وسهلا بكم في عالم"));
$temp = $update_status->response;
echo "<div align='center'>Tweet Posted.</div>";