
Originally Posted by
r937
column name? atributes? articles? values?
i think maybe you should try to explain in english what the database is supposed to do for you
if you're storing column names in a user table (this is called meta-data) there's a very good chance that you have a poor design
Yes i think i have poor design (not by me) but i need next:
HTML Code:
<table>
[mysql results loop row by row]
<tr>
<td><?= $row['column_name']; ?></td>
<td><?= $row['value1']; ?></td>
<td><?= $row['value2']; ?></td>
</tr>
[/mysql results loop row by row]
</table>
Bookmarks