php - Format array from sql query result
452
I have the following query
$sql = "SELECT nomInteretUser from userInteret where idUser='$id_user' ";
$result = $conn->query(sprintf($sql));
I want to produce an array with following structure:array ('User1','User2')
I have tried this :
if ($result->num_rows != 0) {
$rows=array();
while($r=mysqli_fetch_assoc($result))
{
$rows[]=$r;
}
}
But it gives following result:
{
array(1) {
["nomInteretUser"]=> "foot"
}
array(1) {
["nomInteretUser"]=> "cyclisme"
}
}
Answer
Solution:
use
$rows[]=$r['nomInteretUser'];
in your code than you get the right result. :)Answer
Solution:
Simply update your code to :
Answer
Solution:
You can do this 2 ways:
Please update your current code like this
If you don't want to update your current code then modify code, then use array_column() (
>= PHP 5.5
Required)$rows = array_column($rows, 'nomInteretUser');
Hope it helps!
Answer
Solution:
Please replace your code with