Page 1 of 1

Welcome to our new users - php code

Posted: Sat Dec 19, 2009 4:26 am
by pzero
I have added this code onto my front page which will welcome new accounts, who have logged in less than 10 times. Come login #11 they will disappear off this list.

Code: Select all


include "API.php"; // API $url and $pw values set here

    // Fetch the list of players using the AccountsList API command.

    $params = "Password=" . $pw . "&Command=AccountsList&Fields=Player,Logins";
    $api = Poker_API($url,$params,true);
    $result = $api["Result"];
    if ($result == "Error") die("Error: " . $api["Error"]);

    // iterate through list

    for ($i=1; $i<=$api["Accounts"]; $i++)
    {
    
      if (($api["Logins" .$i] <= 10))
      {
      echo '<ul><li>';
      echo $api["Player" .$i] .'</ul>';
      }

   }
?>

Re: Welcome to our new users - php code

Posted: Sun Dec 20, 2009 7:26 pm
by social
Thanks for sharing. :D