Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~549 People Reached
Favorite Tags
Member Avatar for IbtiSsam

how can i delete notification from the bar notifications without deleting from database like facebook. when i click cross the notification disappear <?php $sql_get1=mysqli_query($connection,"SELECT * FROM message WHERE status=0"); if (mysqli_num_rows($sql_get1)>0) { while ($result=mysqli_fetch_assoc($sql_get1)) { echo '<div class="font-weight-bold">'; echo ' <div class="text-truncate badge-counter">'.$result['name'].'</div>'; echo ' <div class="small text-gray-500 bg-gradient-primary">'.$result['message'].'</div>'; echo …

Member Avatar for rproffitt
0
29
Member Avatar for IbtiSsam

<?php include('connexion.php'); include('security.php'); include('includes/header.php'); include('includes/navbar.php'); ?> <body> <?php if(isset($_POST["approved"])) { $id_location=$_POST['id_location']; $sql="UPDATE location SET etat = 'Approved' WHERE id_location = '$id_location'"; mysqli_query($connection,$sql); } if(isset($_POST["rejected"])) { $id_location=$_POST['id_location']; $sql="UPDATE location SET etat='Rejected' WHERE id_location = '$id_location'"; mysqli_query($connection,$sql); } ?> <div class="container-fluid"> <div class="card shadow mb-4"> <div class="card-header py-3"> <h6 class="m-0 font-weight-bold text-primary"> …

Member Avatar for IbtiSsam
0
374
Member Avatar for IbtiSsam

# filter cars according to their brands # *** ![filtrer.png](https://static.daniweb.com/attachments/4/999b4e6902a96108f372a91436f490d7.png) > hiplease help me to *filter the cars* that's the code of > index.php(displaying cars from database) <section class="gauto-offers-area section_70"> <div id="myBtnContainer"> <input type="hidden" name="marque" id="myInput"> <div class="row"> <div class="col-md-12"> <div class="site-heading"> <h4>Viens avec</h4> <h2>meilleures offres</h2> </div> </div> </div> <div …

Member Avatar for Dani
0
49
Member Avatar for IbtiSsam

**please help me** Warning: Cannot modify header information - headers already sent in C:\xampp\htdocs\gauto-preview\gauto-preview\login(1).php on line 19 <?php ob_start(); session_start(); require_once('connexion.php'); error_reporting(E_ALL | E_WARNING | E_NOTICE); ini_set('display_errors', TRUE); if(isset($_POST['login'])){ $username=$_POST['username']; $motpasse=$_POST['motpasse']; if($username&&$motpasse){ $query="SELECT*from user where username='$username' AND motpasse='$motpasse'"; $query_run=mysqli_query($conn,$query); $rep = mysqli_fetch_assoc($query_run); if($rep!=''){ $_SESSION['id_user'] = $rep['id_user'];} $row=mysqli_num_rows($query_run); if($row==1){ flush(); header('Location: …

Member Avatar for rproffitt
0
97