Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
8 views2 pages

Alluser

Ydhxnndn jni

Uploaded by

vacajo2301
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views2 pages

Alluser

Ydhxnndn jni

Uploaded by

vacajo2301
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<?

php
include"connection.php";
$sql = "SELECT * FROM `users`";
$alldata = mysqli_query($conn,$sql);
$alldata = mysqli_fetch_all($alldata,MYSQLI_ASSOC);
// print_r($alldata);
// exit();
include "adDash.php";

?>

<table class="table align-middle mb-0 bg-white">


<thead class="bg-light">
<tr>
<!-- <th class="fs-5" ><b>Image</b></th> -->
<th class="fs-5" ><b>User information</b></th>
<th class="fs-5" ><b>Address</b></th>
<th class="fs-5" ><b>Actions</b></th>
</tr>
</thead>

<?php
foreach($alldata as $a) {
echo

'<tbody>
<tr>'

?>
<!-- <td> <img src="" alt="image"> </td> -->

<?php
echo

// <!-- NAME -->


'<td>
<div class="d-flex align-items-center">'.
'<div class="ms-3">'
.'<p class="fw-bold mb-1"><b>'.$a['fullname'].'</b></p>'
.'<p class="text-muted mb-0"><strong>'.$a['email'].'</strong></p>'
.'<p class="text-muted mt-1 mb-0"><strong>'.$a['number'].'</strong></p>
</div>
</div>
</td>'

//<!-- Address -->


.'<td>
<p class="fw-normal mb-1">Rishikesh</p>
</td>'

//action
.'<td>
<button type="button" id="btn" class="btn bg-info btn-link btn-rounded">
<a href='."GiveNAME.php?id=".$a['id'].' class="text-light "
id="btn"><b>'.'button'.'</b></a>
</button>
<button type="button" class="btn bg-danger btn-link btn-rounded">
<a href='."deluser.php?id=".$a['id'].' class="text-light "
id="btn"><b>'.'Delete'.'</b></a>
</button>

</td>
</tr>'

.'</tbody>';

}
?>

</table>

You might also like