$twitter =  new MyTwitter('nmeierpolys', 'nathaniel1');


/********************* Status Methods *****************************/

echo 'Status:';
//Update Your Status
	$twitter->updateStatus('It Worked!');
	

//Show last 20 Status of User Time Line in array format. 
	$twitter->userTimeLine();	

//Show last 20 Status of Following Time Line in array format.  
	$twitter->followingTimeLine();
	//Optional $twitter->followingTimeLine(2) to show next page with 20 more status
	

//Show last 20 Status of Public Time Line in array format.  
	$twitter->publicTimeLine();
	

//Show Replies of your Updates in array format.  
	$twitter->repliesLine();
	//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