Here is what print_r prints ($ query)
mysqli_result Object ( [current_field] => 0 [field_count] => 2 [lengths] => [num_rows] => 0 [type] => 0 )
I tried:
$result = mysqli_fetch_array($query); print_r($result);
Displays an empty string.
I need to pull the value of the company
column from the table data.
Added by:
Request:
$query = mysqli_query($db, "SELECT * FROM `company` WHERE `auto_numbers` = 'В132СВ47'");