Probably means that only one row was returned from your query, so 2 is out
of range.

---John Holmes...

----- Original Message -----
From: "Todd Barr" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 25, 2003 5:11 PM
Subject: [PHP] Out of Range


here is my code

$Query = "SELECT Last_Login and Current_Login from Security where
PM_ID=$_SESSION[ID]";
$Getdates = odbc_do($link, $Query);
while(odbc_fetch_row($Getdates))
         {
$Last=odbc_result($Getdates, 1);
$Now=odbc_result($Getdates, 2);


Now I get an error that tells me that #2 is out of the range....

Any suggestions


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to