Answers for "php read mysql"

PHP
0

php read mysql

$qry = "SELECT * FROM database.table;";		//create Query
$result = $db -> query($qry);				//send and get result

$resultArray = $result->fetchAll();			//fetch result
  
echo $resultArray;
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language