<?php
include_once('db.php');
$sq1= "SELECT MAX(salary),MIN(salary) FROM employees";
$query = $conn->query($sq1);
while($row = $query->fetch_assoc()){
print_r($row); // here here which code is required to display only value.
}
?>
我只想显示值,但这种方法不能完全填充。
德玛西亚99
Helenr