The mysqli_field_count() function returns the number of columns for the most recent query.
mysqli_field_count(connection);
Parameter | Is Required | Description |
---|---|---|
connection | Required. | MySQL connection |
It returns an integer that represents the number of columns in the result set.
Get the number of columns for the most recent query.
<?php//from w w w . jav a 2 s. c o m
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno($con)){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
mysqli_query($con,"SELECT * FROM Persons");
// Get number of columns
print(mysqli_field_count($con));
mysqli_close($con);
?>