Jump to content

How do I display this?


ShoeLace1291

Recommended Posts

I got this from the code library, but I don't know how to display it. 

function GetFieldList($database, $table) {
				 $fldlist = mysql_list_fields($database, $table);
				 $columns = mysql_num_fields($fldlist);

				 for ($i = 0; $i < $columns; $i++) {
				 		 $Listing[] = mysql_field_name($fldlist, $i);
						 }
				 Return ($Listing); 
				 }

 

I want to display the list of fields.

Link to comment
https://forums.phpfreaks.com/topic/56502-how-do-i-display-this/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.