Mysql
 sql >> Database >  >> RDS >> Mysql

Inserimento di risultati MySQL da PHP in JavaScript Array

In questo caso, quello che stai facendo è scorrere l'array dei risultati e ogni volta che stampi la riga var arrayObjects = [<?php stmt($name) ?>]; . Tuttavia questo non converte tra l'array PHP che ottieni come risultato e un array javascript.

Da quando hai iniziato a farlo in questo modo, puoi fare:

<?php
    //bind to $name
    if ($stmt = $mysqli->prepare("SELECT category.name FROM category")) {
        $stmt->bind_result($name);
        $OK = $stmt->execute();
    }
    //put all of the resulting names into a PHP array
    $result_array = Array();
    while($stmt->fetch()) {
        $result_array[] = $name;
    }
    //convert the PHP array into JSON format, so it works with javascript
    $json_array = json_encode($result_array);
?>

<script>
    //now put it into the javascript
    var arrayObjects = <?php echo $json_array; ?>
</script>