Re: [PHP-DB] How to display table columns

2004-04-25 Thread John W. Holmes
andy amol wrote: hi, I want to display the table coulumns along with those values below it. I am only able to display the table values, now I want to diplay the corresponding table attribut above the value. eg : name age sex abc1m xyz 2f I

Re: [PHP-DB] How to display table columns

2004-04-25 Thread Marcjon Louwersheimer
mysql_fetch_assoc($result)) { echo "".$row["name"]."".$row["age"]."".$row["sex"].""; } Then, end the table like this echo ""; There you have it. - Original message - From: "andy amol" <[EMAI

[PHP-DB] How to display table columns

2004-04-25 Thread andy amol
hi, I want to display the table coulumns along with those values below it. I am only able to display the table values, now I want to diplay the corresponding table attribut above the value. eg : name age sex abc1m xyz 2f I want to displa