I added in the "$backgroundImage = "http://tomlol3.100webspace.net/tommo/sigbg.png";PHP Code:<?php
//SigStat.com MOD API
//Customize Output messages from the javascript feed
//Created by Adam Davis 2006
//your msn id here
$id = '(hidden for reasons lol)';
//get the contents of the above source
$source = file_get_contents($id);
$backgroundImage = "http://tomlol3.100webspace.net/tommo/sigbg.png";
//run a serious of checks and echo out the message which links with the users status
if (stristr($source, Online) == TRUE) {
echo "Msn Status: Online <br /> Powered by SigStat.com";
}
elseif (stristr($source, Busy) == TRUE) {
echo "Msn Status: Busy <br /> Powered by SigStat.com";
}
elseif (stristr($source, Away) == TRUE) {
echo "Msn Status: Away <br /> Powered by SigStat.com";
}
elseif (stristr($source, BRB) == TRUE) {
echo "Msn Status: Be Right Back <br /> Powered by SigStat.com";
}
elseif (stristr($source, PHN) == TRUE) {
echo "Msn Status: In A Call <br /> Powered by SigStat.com";
}
elseif (stristr($source, LUN) == TRUE) {
echo "Msn Status: Out To Lunch <br /> Powered by SigStat.com";
}
elseif (stristr($source, Offline) == TRUE) {
echo "Msn Status: Offline <br /> Powered by SigStat.com";
//there must have been a error somewhere, couldent get the status
} else {
echo "Unable to get your status at this time - SigStat.com";
}
?>
Just wondering how to make the "Msn Status: Online" onto the image?
Cheers/





Reply With Quote
