Do you wnat to know what is your public IP Address? Here is a small script that you can use to check your IP Address using PHP. You can check my sidebar for your IP Address.
<?
if (getenv(HTTP_X_FORWARDED_FOR)) {
$pipaddress = getenv(HTTP_X_FORWARDED_FOR);
$ipaddress = getenv(REMOTE_ADDR);
echo “Your Proxy IP address is : “.$pipaddress. ” (via $ipaddress) ” ;
} else {
$ipaddress = getenv(REMOTE_ADDR);
echo “Your IP address is : $ipaddress”;
}
?>
Like this blog? Why not buy me a cup of coffee?
Filed under:
Networking, PHP
iTALC - Intelligent Teaching And Learning with Computers. iTalc is an open source software use to monitor, view and control computers on your network or computer laboratory.
I know it is a tedious job to check the works of your students specially during laboratory, You have to go and check their computers individually just to see their progress, But with iTalc you don’t have to roam around the lab to check them, you can just sit and see what your students are doing and can also easily check the sites they are trying to access. What’s best with this software its free and run perfectly with Ubuntu.
For a complete tutorial click here.
Developers site.
Here’s a screenshot.

Like this blog? Why not buy me a cup of coffee?