$sql3 = "SELECT ps.* from posts ps"; $result3 = $conn->query($sql3) or die(mysqli_error());
How can i get the number of rows on that result on php ?
收起
$result3->num_rows
Try searching before asking
报告相同问题?