Argggh...API Errors

For discussion of the Poker Mavens server module and other administration topics
Post Reply
fstetson
Posts: 33
Joined: Mon Jan 18, 2010 11:03 pm

Argggh...API Errors

Post by fstetson »

no matter what I do, I keep getting these error messages: This was for new users list;


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 '
'; echo $api["Player" .$i] .'
'; } } ?>
Kent Briggs
Site Admin
Posts: 5878
Joined: Wed Mar 19, 2008 8:47 pm

Re: Argggh...API Errors

Post by Kent Briggs »

You didn't list what the error was and your code was posted as all one continuous line and is very hard to read.
fstetson
Posts: 33
Joined: Mon Jan 18, 2010 11:03 pm

Re: Argggh...API Errors

Post by fstetson »

Resolved this one...operator error, of course. I posted a new thread with more specific issues outlined.
Post Reply