Re: [PHP-DB] getting MySQL column header?

2003-07-21 Thread CPT John W. Holmes
How would one get the column name/header out of this query so that I could display it as the header for my columns? Honestly, did you read the manual after I told you last time?? $num_fields = mysql_num_fields($result) for($x=0;$x$num_fields;$x++) { echo mysql_field_name($result,$x); }

RE: [PHP-DB] getting MySQL column header?

2003-07-21 Thread Aaron Wolski
. *shrugs* Thanks for the info, though! Aaron -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: July 21, 2003 4:24 PM To: Aaron Wolski; [EMAIL PROTECTED] Subject: Re: [PHP-DB] getting MySQL column header? How would one get the column name/header out

RE: [PHP-DB] getting MySQL column header?

2003-07-21 Thread Ow Mun Heng
22, 2003 4:24 AM To: Aaron Wolski; [EMAIL PROTECTED] Subject: Re: [PHP-DB] getting MySQL column header? How would one get the column name/header out of this query so that I could display it as the header for my columns? Honestly, did you read the manual after I told you last time