mysql_field_type

admin

Administrator
Staff member
Senario:

$sql = "SELECT Name FROM tblUser";
$result = mysql_query($sql);
$type = mysql_field_type($result, ? );

can anyone tell me what should I put for this '?' if I only want to select this field and know about the field type of this field?

Thanks for helping.
 
Back
Top