Answers for "row Count 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
2

count php

$cars = array("Volvo","BMW","Toyota");
echo count($cars); // 3
Posted by: Guest on May-11-2021

Browse Popular Code Answers by Language