Re: show data on the text input box

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux