Posted by Hilarion on 07/12/05 16:49
> At present it is:
> $mycolumn[Region], $mycolumn[Ort],
> $mycolumn[Sovplatser]$mycolumn[Rum],$mycolumn[Avstĺnd till havet i
> km],$mycolumn[Terrass]);
Change column names to something which does not have spaces and
does use ony US-ASCII chars (no "ĺ" chars).
If you are retrieving something from PHP array by string index,
then put quotes around this index like this (even if they are
single words):
$mycolumn['Region']
$mycolumn['Avstĺnd till havet i km']
Hilarion
[Back to original message]
|