|
mysql_list_fieldsList MySQL table fields Warning
This function was deprecated in PHP 5.4.0, and it and the entire original MySQL extension was removed in PHP 7.0.0. Instead, use either the actively developed MySQLi or PDO_MySQL extensions. See also the MySQL: choosing an API guide. Alternatives to this function include:
Description
resource mysql_list_fields(string
$database_name , string $table_name , resource $link_identifier = NULL)Retrieves information about the given table name.
This function is deprecated. It is preferable to use
mysql_query to issue an SQL Parameters
Return Values
A result pointer resource on success, or The returned result can be used with mysql_field_flags, mysql_field_len, mysql_field_name and mysql_field_type. Examples
Example #1 Alternate to deprecated mysql_list_fields
The above example will output something similar to: Array ( [Field] => id [Type] => int(7) [Null] => [Key] => PRI [Default] => [Extra] => auto_increment ) Array ( [Field] => email [Type] => varchar(100) [Null] => [Key] => [Default] => [Extra] => ) Notes
See Also
|