<?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.}?>我只想显示值,但这种方法不能完全填充。
- 2 回答
- 0 关注
- 133 浏览
添加回答
举报
0/150
提交
取消