Display AIM status
By: Daniel

Have you ever wanted to show the status of AIM on your website. The following code will display weather or not your screen name or any other specified screename is onlne or offline.

This code cannot display if they are away or idle or what their away message is, but in general if they are online or not.

<?
$screenName = "YOUR SN HERE"; // Add your screename to the $screenName variable
// Connect to AOL server
$url = @fsockopen("big.oscar.aol.com", 80, &$errno, &$errstr, 3);

// Query the Server
fputs($url, "GET /".$screenName."?on_url=online&off_url=offline HTTP/1.0\n\n");

// See resultant page
while(!feof($url)){
	$feofi++;
	$page .= fread($url,256);
	if($feofi > 10){
		$page = "offline";
		break;
	}
}
fclose($url); // Close the connection to big.oscar.aol.com
// determine online status
if(strstr($page, "online")){
	echo '<img src="http://www.aol.com/aim/gr/online.gif" /> '.$screenName.' is online';
}else{
	echo '<img src="http://www.aol.com/aim/gr/offline.gif" /> '.$screenName.' is offline';
}
?>

The last part of this code does the status checking and shows an icon with the status. You may wish to consider copying the online.gif and offline.gif code to your server.

Enjoy!

1 Votes | Average: 3 out of 51 Votes | Average: 3 out of 51 Votes | Average: 3 out of 51 Votes | Average: 3 out of 51 Votes | Average: 3 out of 5 (1 votes, average: 3 out of 5)
Loading ... Loading ...
del.icio.us:Display AIM status digg:Display AIM status spurl:Display AIM status wists:Display AIM status simpy:Display AIM status newsvine:Display AIM status blinklist:Display AIM status furl:Display AIM status reddit:Display AIM status fark:Display AIM status blogmarks:Display AIM status Y!:Display AIM status smarking:Display AIM status magnolia:Display AIM status segnalo:Display AIM status

One Response to “Display AIM status”

  1. WJ Says:

    Thanks for the script.

    P.S. In the second sentence on top of your post: “weather” is a meteorological condition. “Whether” is a conjunction that expresses doubt or choice.

Leave a Reply

eXTReMe Tracker
geovisitors