Answers for "mariadb read sql file"

SQL
0

php read from mariadb

$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

Code answers related to "SQL"

Browse Popular Code Answers by Language