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

Crea array PHP dalla colonna MySQL

potresti scorrere l'array e crearne uno nuovo, in questo modo:

$column = array();

while($row = mysql_fetch_array($info)){
    $column[] = $row[$key];
//Edited - added semicolon at the End of line.1st and 4th(prev) line

}