“PHP Selecione do banco de dados em matriz” Respostas de código

PHP Selecione do banco de dados em matriz

<?php

// run query
$query = mysql_query("SELECT * FROM table");

// set array
$array = array();

// look through query
while($row = mysql_fetch_assoc($query)){

  // add each row returned into an array
  $array[] = $row;

  // OR just echo the data:
  echo $row['username']; // etc

}

// debug:
print_r($array); // show all array data
echo $array[0]['username']; // print the first rows username
Gifted Goldfinch

Converter o resultado da consulta para matar PHP

$result = "select * from random_table where id = 1";

$rows = [];
while($row = mysqli_fetch_array($result))
{
    $rows[] = $row;
}
Cautious Capuchin

Respostas semelhantes a “PHP Selecione do banco de dados em matriz”

Perguntas semelhantes a “PHP Selecione do banco de dados em matriz”

Mais respostas relacionadas para “PHP Selecione do banco de dados em matriz” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código