im tried to reply multiple tweet at the same time , but the it`s reply only one tweet
require_once('twitteroauth/OAuth.php');
require_once('twitteroauth/twitteroauth.php');
$consumer_key = "8jxxxxxxxxxxxxxxA13k";
$consumer_secret = "f6UxxxxxxxxxxxxxxPKJC";
$access_token = "758xxxxxxxxxxxxxx833o";
$access_token_secret = "XFa4iKxxxxxxxxxxxxxGJqD";
$connection = new TwitterOAuth($consumer_key,$consumer_secret,$access_token,$access_token_secret);
$statuses = $connection->get('statuses/home_timeline', array( 'count' => 10 , 'exclude_replies' => true));
foreach($statuses as $status) { // records the id of the tweet just sent
$status_id = $status->id_str; // SHOULD return the id of the last tweet
$responce = $connection->post('statuses/update', array('in_reply_to_status_id'=> $status_id, 'status' => "@".$memberUsername." ".$message));