<?php
include("db.php");
$no_of_students=mysqli_fetch_array(mysqli_query($conn,"SELECT COUNT(*) FROM `studentregister`"));
?>
<?php
echo '<p style="font-weight: bold;" class="pt-2">Number of Students : '.$no_of_students[0].'</p>';
?>
<?php
include("db.php");
$no_of_students=mysqli_fetch_array(mysqli_query($conn,"SELECT COUNT(*) FROM `studentregister`"));
?>
<?php
echo '<p style="font-weight: bold;" class="pt-2">Number of Students : '.$no_of_students[0].'</p>';
?>
<?php ob_start(); session_start(); if((!isset($_SESSION['email'])) &&a…
Read more
0 Comments