Answers for "count the number of the query request php"

PHP
1

get count sql query in php

$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];
Posted by: Guest on February-18-2021

Code answers related to "count the number of the query request php"

Browse Popular Code Answers by Language