File "function.php"
Full Path: /home/analogde/www/Design/fileman/Fusion/CRUD01/function.php
File size: 246 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
function get_total_all_records()
{
include('database connection.php');
$statement = $connection->prepare("SELECT * FROM course");
$statement->execute();
$result = $statement->fetchAll();
return $statement->rowCount();
}
?>