//Optional $twitter->repliesLine(2) to show next page	

//Show a single status, specified by the id parameter below, in array format.  
	$twitter->showStatus(1234);	
	//Requires input of the post ID

//Destroy a single status, specified by the id parameter below
	$twitter->destroyStatus(1234);	
	//Requires input of the post ID
	
	
/********************* User Methods *****************************/

echo 'User Messages:';
//Returns up to 100 of the authenticating users you follow who have most recently updated, in array format.
	$twitter->userFollowing();
	
//Returns the authenticating user's followers.
	$twitter->userFollowers();
	
//Returns a list of the users currently featured on the site with their current statuses inline; in array format.
	$twitter->userFeatured();
	
//Show a single status, specified by the id or screen name parameter below
	$twitter->userShow('screen_name or userID');


/******************** Direct Message Methods************************/
echo 'Direct Messages:';
//Sends a new direct message to the specified user from the authenticating user
	$twitter->newMessage('screen_name', 'message to send');