SyntaxFix
Write A Post
Hire A Developer
Questions
here is the code for showing no of rows in the table with PHP
$sql="select count(*) as total from student_table"; $result=mysqli_query($con,$sql); $data=mysqli_fetch_assoc($result); echo $data['total'];