D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
buildteksolution
/
www
/
superadmin
/
Filename :
enquiry.php
back
Copy
<?php include 'cn.php'; $sno=$_GET['id']; $sql1 = "SELECT * FROM enquiry where id=$sno"; $result1 = $con->query($sql1); $row1 = $result1->fetch_assoc(); ?> <!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <link rel="stylesheet" href="https://cdn.datatables.net/1.11.3/css/dataTables.bootstrap4.min.css" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.css" crossorigin="anonymous"> <link href="https://www.proafs.com.au/images/favicon.png" rel="shortcut icon" type="image/png"> <style> .scrollbar{ overflow:auto ; white-space: nowrap; } </style> </head> <body> <div class="container-scroller"> <?php include 'header.php'; ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper pb-0"> <div class="col-12 grid-margin stretch-card"> <div class="card"> <div class="container"> <div> <h2 style="text-align:center;margin-top:8px;">All Enquiry</h2> </div> <div class="scrollbar"> <table id="example" class="table table-striped table-bordered" style="width:100%;text-align: center;border:2px solid #000;"> <tr> <td colspan='2'> <img src='https://www.proafs.com.au/images/logo-wide.png' style=" width: 200px; height: 100px; border-radius: 0px; " > </td> </tr> <tr> <td colspan='2'> <h2>PRO ACCOUNTING </h2> <p>CLIENT AUTHORISATION FORM</p> </td> </tr> <tr> <td> <b>Name :</b> </td> <td > <?php echo $row1['name']; ?> </td> </tr> <tr> <td> <b>Email :</b> </td> <td > <?php echo $row1['email']; ?> </td> </tr> <tr> <td> <b>TFN :</b> </td> <td > <?php echo $row1['tfn']; ?> </td> </tr> <tr> <td> <b>ABN :</b> </td> <td > <?php echo $row1['abn']; ?> </td> </tr> <tr> <td> <b>Phone :</b> </td> <td > <?php echo $row1['phone']; ?> </td> </tr> <tr> <td> <b>Street Address :</b> </td> <td > <?php echo $row1['address']; ?> </td> </tr> <tr> <td> <b>Postal Code :</b> </td> <td > <?php echo $row1['postal']; ?> </td> </tr> <tr> <td> <b>City :</b> </td> <td > <?php echo $row1['city']; ?> </td> </tr> <tr> <td> <b>Country :</b> </td> <td > <?php echo $row1['country']; ?> </td> </tr> <tr> <td> <b>Message :</b> </td> <td > <?php echo $row1['message']; ?> </td> </tr> <tr> <td colspan="2"> <h2>DECLARATION </h2> <p>I <?php echo $row1['name']; ?> hereby acknowledge that, I hereby authorise Pro Accounting & Financial Services Pty Ltd, Tax agents to add me in their tax portal,<br> represent me before various organisations and to provide Accounting &<br> tax services including lodgement of Business Activity Statements, tax returns and other documents <br>required by tax office & other departments (based on information provided by me) from time to time.</p> <p>Consented: Authorisation approval provided </p> <p>Liability Limited by a scheme approved under Professional Standards Legislation</p>"; </td> </tr> </table> ***************************************************************************** <p>This is auto generate email on filling the Authorisation form in favour of Pro-afs on <a href='https://www.proafs.com.au/'>https://www.proafs.com.au/</a><br> <p align="justify">Please do not reply to this email, This email is confidential and for the sole use of the intended recipient(s). If you receive it and are not the intended <br>recipient(s) or if it is transmitted/received in error, any unauthorized use, alteration, disclosure, distribution or review of this email is strictly <br>prohibited. The information contained in this email, including any attachment sent with it, may be subject to a duty of confidentiality. If you are<br> not the intended recipient(s) or if you have received this email in error, you are asked to immediately notify the sender by return email or by calling<br> us at 0450642626.You should also delete this email, and any copies, from your computer system network and destroy any hard copies produced.</p> <a href="images/<?php echo $row1['image']; ?>"><img src="images/<?php echo $row1['image']; ?>" style="width:50%;"></a> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <!-- partial:partials/_footer.html --> <?php include'footer.php'; ?> <!-- partial --> </div> <!-- main-panel ends --> </div> <!-- page-body-wrapper ends --> </div> <!-- container-scroller --> <script src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script> <script src="https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap4.min.js"></script> <script> $(document).ready(function() { $('#example').DataTable(); } ); </script> <script> // $(".deleteRecord").click(function(e) { // var e_id = $(this).data("id"); // $.ajax({ // url: "new-action.php", // type: 'post', // data: { 'e_id':e_id }, // success: function(response) { // // console.log(response); // if(response == 1) { // alert(\"Deleted Successfully!.\") // location.href='index.php'; // // $('#mytablerow').remove(); // }else if(response == 0){ // // swal("Great","Item added To your Cart", "success"); // } // } // }); // }); </script> </body> </html>