I have a way to get the name of the columns of a table. It works fine but now I want to update to the new mysqli ? (I tried the mysqli_fetch_field but I don't know how to apply to this case and I am not sure if it is the wright option)
How to do the same with mysqli ? :
$sql = "SELECT * from myTable";
$result = mysql_query($sql,$con);
$id = mysql_field_name($result, 0);
$a = mysql_field_name($result, 1);
echo $id;
echo $a;
This is another easy way to print each field's name, table, and max length
I'm not sure if there is a better way to do that, but I checked that this works to get just the name of the columns and is the new mysqli :
This is the way to implement this missing function:
You can replace the function
mysql_field_name
tomysqli_fetch_field_direct
and use it like the following: