Server : LiteSpeed System : Linux in-mum-web1333.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u141265441 ( 141265441) PHP Version : 8.4.3 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /home/u141265441/domains/uniquebuildwell.com/public_html/admin/ |
<?php
$contact='active-menu';
include("header.php");
include("db.php");
?>
<div id="page-wrapper" >
<div id="page-inner">
<div class="row">
<div class="col-md-12">
<h2>Contact List</h2>
</div>
</div>
<hr />
<?php
$select="select * from contact";
$res=mysqli_query($con,$select); ?>
<table class="TFtable" width="100%" >
<tr style="font-weight:bold; color:#900; font-size:16px;">
<td width="6%">ID</td>
<td width="15%">NAME</td>
<td width="10%">Mobile No</td>
<td width="20%">EMAIL</td>
<td width="15%">SUBJECT</td>
<td width="35%">MESSAGE</td>
</tr>
<?php
while($row=mysqli_fetch_array($res))
{ ?>
<tr>
<td width="6%"><?php echo $row['cid']; ?></td>
<td width="15%"><?php echo $row['name']; ?></td>
<td width="10%"><?php echo $row['phone']; ?></td>
<td width="20%"><?php echo $row['email']; ?></td>
<td width="15%"><?php echo $row['subject']; ?></td>
<td width="35%"><?php echo $row['message']; ?></td>
</tr>
<?php
} ?>
</table>
</div>
</div>