D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
salvation.incrediblebengal.com
/
admin
/
Filename :
restaurent-details.php
back
Copy
<?php include'config.php'; include'get_session_access.php'; $page_title = "Restaurent Details"; $show_item = "SELECT * FROM restro_details"; $run_query = mysqli_query($conn, $show_item); ?> <!DOCTYPE html> <html lang="en"> <head> <title>Encode Restaurent - Admin Dashboard </title> <?php include'style.php'; ?> </head> <body> <div id="main-wrapper"> <?php include'header.php'; ?> <?php include'sidebar.php'; ?> <!--********************************** Content body start ***********************************--> <div class="content-body"> <!-- row --> <div class="container-fluid"> <div class="row"> <?php while($row = mysqli_fetch_assoc($run_query)){ ?> <div class="col-lg-12 col-sm-12"> <div class="page_title"> <ul class="list-inline"> <li> <h4>Restaurent Information</h4> </li> <li> <a href="edit-restaurent.php?id=<?php echo $row['restro_id']; ?>">Update Info <svg class="ml-1" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#ffb5cf" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"></path><polygon points="18 2 22 6 12 16 8 16 8 12 18 2"></polygon></svg> </a> </li> </ul> </div> </div> <div class="col-xl-12"> <div class="restaurent_detailsDiv"> <div class="restaurent_logo"> <img src="images/<?php echo $row['restro_logo']; ?>"> <h3 class="restaurent_title"><?php echo $row['restro_name']; ?></h3> <text>Opening Date: <span><?php echo $row['restro_opening']; ?></span>.</text> </div> <div class="restaurent_details"> <div class="clearfix"></div> <div class="row"> <div class="col-lg-12 col-sm-6 col-xs-12"> <h5>GST IN: <span><?php echo $row['restro_gst']; ?></span></h5> </div> <div class="col-lg-6 col-sm-6 col-xs-12"> <h4>Contact Details</h4> <table> <tr> <td><h6>Email:</h6></td> <td><?php echo $row['restro_email']; ?></td> </tr> <tr> <td><h6>Phone Number:</h6></td> <td>+91 <?php echo $row['restro_phone']; ?></td> </tr> <tr> <td><h6>Phone Number:</h6></td> <td>+91 <?php echo $row['restro_phone2']; ?></td> </tr> <tr> <td><h6>Address:</h6></td> <td><?php echo $row['restro_address']; ?></td> </tr> <tr> <td><h6>City:</h6></td> <td><?php echo $row['restro_city']; ?></td> </tr> </table> </div> <div class="col-lg-6 col-sm-6 col-xs-12"> <h4>Owner Details</h4> <table> <tr> <td><h6>Name:</h6></td> <td><?php echo $row['restro_owner']; ?></td> </tr> <tr> <td><h6>Phone Number:</h6></td> <td>+91 <?php echo $row['restro_owner_phone']; ?></td> </tr> <tr> <td><h6>Phone Number(2):</h6></td> <td>+91 <?php echo $row['restro_phone2']; ?></td> </tr> <tr> <td><h6>Address:</h6></td> <td><?php echo $row['restro_address']; ?></td> </tr> <tr> <td><h6>Address:</h6></td> <td><?php echo $row['restro_city']; ?></td> </tr> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> </div> <!--********************************** Content body end ***********************************--> <?php include'footer.php'; ?> </body> </html>