Page 1 of 1

Argggh...API Errors

Posted: Wed Jan 19, 2011 2:00 pm
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] .'
'; } } ?>

Re: Argggh...API Errors

Posted: Wed Jan 19, 2011 2:28 pm
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.

Re: Argggh...API Errors

Posted: Fri Jan 21, 2011 8:51 am
by fstetson
Resolved this one...operator error, of course. I posted a new thread with more specific issues outlined.