you have multiple columns that call "name"
in your select , add to the list of fields :
cdkb.name as name1 ,dkb.name as name2 ....
and then echo $row['name1']
...
Haim Evgi
2010-02-16 06:09:31
you have multiple columns that call "name"
in your select , add to the list of fields :
cdkb.name as name1 ,dkb.name as name2 ....
and then echo $row['name1']
...
Using more than one star in SELECT-query - bad practice. You can get conflict with column names and your code can become erroneous.