Bonjour,
Je débute dans php et cherche à afficher mes données dans un tableau.
Dans la table 0_form_import il y a 4 enregistrements, pourtant un seul s'affiche.
Ce qui affiche :
Pouvez-vous me filer un coup de code ?
Merci !
Je débute dans php et cherche à afficher mes données dans un tableau.
Dans la table 0_form_import il y a 4 enregistrements, pourtant un seul s'affiche.
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = mysqli_connect("localhost", "root", "", "test");
$query = "SELECT * FROM 0_form_import";
$result = mysqli_query($mysqli, $query);
$form_array = array(array('id' => '-', 'text' => "Sélectionner", 'ref' => ''));
$row = mysqli_fetch_array($result, MYSQLI_BOTH);
$form_array[] = array('id' => $row["id"],
'text' => $row["name"],
'ref' => $row["ref"]
);
echo "test echo<br>" . $form_array;
echo "test print_r<br>" . print_r($form_array);
Ce qui affiche :
a écrit :
test echo
ArrayArray
(
[0] => 1
=> 1
[1] => SELLSY ventes
=> SELLSY ventes
[2] => VEP
=> VEP
)
test print_r
1
Pouvez-vous me filer un coup de code ?
Merci !