[Release] Player's online

Results 1 to 1 of 1
  1. #1
    Eternity Aion IcedEarth is offline
    MemberRank
    Jul 2008 Join Date
    Jõhvi, EstoniaLocation
    230Posts

    [Release] Player's online

    PHP Code:
    <?php 
    $host 
    'localhost';            // MySQL Host
    $user 'root';                 // MySQL User
    $password '';                 // MySQL Pass
    $gs '';                // Game server Database

    $connect mysql_connect($host$user$password);
    mysql_select_db($gs);
    mysql_query("SET NAMES 'utf8'");
    $result mysql_query("SELECT * FROM players where online=1");
    $online mysql_num_rows($result);

    echo 
    'We have '.$online' players online !';
    ?>




Advertisement