php-general | 2003022
Date: 02/18/03
- Next message: Ernest E Vogelsinger: "Re: [PHP] [Fwd: [PHP-DOC] Urgent....plz]"
- Previous message: Chris Pudney: "[PHP] Problem with array variables in forms"
- In reply to: Chris Blake: "[PHP] Array not working"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
At 08:45 18.02.2003, Chris Blake said:
--------------------[snip]--------------------
> // THIS IS LINE 27
> //....print them out to page
> echo $row['ClientID'].['ClientName'].['Distance']. '<hr>';
--------------------[snip]--------------------
Try
echo $row['ClientID'].$row['ClientName'].$row['Distance']. '<hr>';
--
>O Ernest E. Vogelsinger
(\) ICQ #13394035
^ http://www.vogelsinger.at/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Ernest E Vogelsinger: "Re: [PHP] [Fwd: [PHP-DOC] Urgent....plz]"
- Previous message: Chris Pudney: "[PHP] Problem with array variables in forms"
- In reply to: Chris Blake: "[PHP] Array not working"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

