ragazzi quando un utente visita un profilo di una persona, compare online, quando si disconnette vede che è offline.
questi due codici sono giusti?
codice php
Codice PHP:
<?PHP
$ts_ip = "123.45.67.89"; // Change to your server's IP external or domain name
$ts_port = "51234"; // Make sure this port is open on the router or firewall
$output = @fsockopen("$ts_ip", $ts_port, $errno, $errstr, 2);
socket_set_timeout($output, 000002);
if (!$output) {
echo "<FONT COLOR=#DD0000><B>OFFLINE</B></FONT>";
} else {
echo "<FONT COLOR=#00DD00><B>ONLINE</B></FONT>";
}
@fclose($output);
?>
secondo codice php:
Codice PHP:
<?php
// Script by Akensai
if (!$socket = @fsockopen("YOUR.IP.HERE", 80, $errno, $errstr, 30))
{
* echo "<font color='red'><strong>Offline!</strong></font>";
}
else*
{
* echo "<font color='green'><strong>Online!/strong></font>";
**
* fclose($socket);
}
?>
poi potete spiegarmi come faccio a inserirlo? grazie mille <3