| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/jobportal/ |
Upload File : |
<?php
//session_start();
$uid=$_SESSION["id"];
$sql1="select * from notification where post_usr='$uid'";
$re=mysqli_query($con,$sql1);
$count=mysqli_num_rows($re);
?>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-comment" aria-hidden="true"></span> Notification(<?php echo $count; ?>) </a></li>
<li><a href="logout1.php"><span class="glyphicon glyphicon-off" aria-hidden="true"></span> Log Out</a></li>
</ul>
<form class="navbar-form navbar-right" action="search.php" method="post">
<div class="input-group" style="margin-right:200px">
<input type="text" class="form-control" placeholder="Search..." id="query" name="search" value="">
<div class="input-group-btn">
<button type="submit" class="btn btn-success"><span class="glyphicon glyphicon-search"></span></button>
</div>
</div>
</form>
</div>