C
|
cgphp 3/20/2012 |
Set the "Output code page" option as UTF-8 in the Misc tab: http://xlinesoft.com/phprunner/docs/miscellaneous_settings.htm |
![]() |
jimbeam author 3/20/2012 |
Set the "Output code page" option as UTF-8 in the Misc tab: http://xlinesoft.com...us_settings.htm
|
C
|
cgphp 3/20/2012 |
If you are fetch only one column of only one record you don't need the foreach loop. Anyway, try this code: ...blah blah blah construct a query called $sqlStreetName |
![]() |
jimbeam author 3/20/2012 |
I am fetching one column ("address") from many records. Your solution prints "array & array" which means that $value is an array:
|
C
|
cgphp 3/20/2012 |
Wouldn't it easier to have something like: $rs2 = CustomQuery($sqlStreetName); |
![]() |
jimbeam author 3/20/2012 |
Cristian, thanks for taking the time to help. while($row = db_fetch_array($rs2)){
|