Thanks a million for the information and help,
Regards,
Iccsi,
"Jim Giner" wrote in message news:DF.35.15882.0FEDC635@xxxxxxxxxxxx...
On 5/9/2014 12:37 AM, iccsi wrote:
echo "ID:".$row{'invid'}." Inv Date:".$row{'invdate'}."Note: ".
$row{'Note'}."<br>";
These are wrong. You are processing an array of the results. Arrays
are referenced with brackets, not braces. Should read:
echo "ID:".$row['invid']." Inv Date:".$row['invdate']."Note:
".$row['Note']."<br>";
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php