Answers for "what is the result of a query sql with php"

CSS
1

php echo sql result

$sql = "select * FROM tableName;";

$result = mysqli_query($conn, $sql);
while ($row = mysqli_fetch_assoc($result)) {
  echo $row['columnName']; 
}
Posted by: Guest on August-19-2021
0

php + get sql query

echo $select->__toString();
Posted by: Guest on June-10-2020

Code answers related to "what is the result of a query sql with php"

Browse Popular Code Answers by Language