mysql_field_type(result,offset)

Description: Returns the type of a specified field in a result.

After calling mysql_list_fields(), mysql_query(), or another function that returns a resource identifier given by result, mysql_field_name() returns the type of a given field indexed by offset, being one of int, string, real, blob, and so on.

Example:

$result = mysql_list_fields ("cms", "subscribers");
$name = mysql_field_type ($result, 2);  // offset of 2 means the third column
echo "$name<BR>
";

See also: mysql_field_flags(), mysql_field_len(), mysql_field_name(), mysql_list_fields()

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.117.154.89