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