D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
antlerworldwide
/
public_html
/
admin
/
Filename :
detail.php
back
Copy
<?php include('checklogin.php')?> <?php include('include/header.php')?> <!--// top-bar --> <!--********************************************************************************************************************************************************************--> <!--*************************************************************************** Start Table List ****************************************************************--> <!--********************************************************************************************************************************************************************--> <script type="text/javascript"> function delconf(id) { var msg="Are you sure to deletd Information# "+id+"?"; var reply=confirm(msg); return reply; } </script> <div class="outer-w3-agile mt-3"> <h4 class="tittle-w3-agileits mb-4">Manage City</h4> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class=" table-responsive"> <table id="datatable" class="table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th width="40">Action</th> <th width="15">Sr.No.</th> <th width="15">Product Id</th> <th width="15">First Name</th> <th width="15">Last Name</th> <th width="15">Email Id</th> <th width="15">Password</th> <th width="15">Address</th> <th width="15">City</th> <th width="15">State</th> <th width="15">Country</th> <th width="15">Mobile No</th> <th width="15">Designation</th> <th width="15">Year Of exp.</th> <th width="15">Functional Area</th> <th width="15">Salary</th> <th width="15">Basic Graduation</th> <th width="15">Post Graduation</th> <th width="15">Skills</th> <th width="15">Resume</th> <th width="15">Price</th> </tr> </thead> <tbody> <?php include('include/conectdb.php'); $inc=1; //$bg=''; $sql=mysqli_query($dbc,"SELECT * FROM `user_info`"); if(mysqli_num_rows($sql)>0) { ?> <?php while($row=mysqli_fetch_array($sql)) { //$bg=($bg=='#E3EDF0'?'#ffffff':'#E3EDF0'); ?> <tr> <td> <a href="del_image.php?id=<?=$row['id']?>" onclick="return delconf('<?=$row['id']?>')" class="btn btn-danger btn-xs"> <span><i class="fa fa-trash" aria-hidden="true"></i></span></a> </td> <td><?php echo $inc++; ?></td> <td><?=$row['product_id']?></td> <td><?=$row['fname']?></td> <td><?=$row['lname']?></td> <td><?=$row['email']?></td> <td><?=$row['pass']?></td> <td><?=$row['address']?></td> <td><?=$row['city']?></td> <td><?=$row['state']?></td> <td><?=$row['country']?></td> <td><?=$row['mobileno']?></td> <td><?=$row['designation']?></td> <td><?=$row['yearpass']?></td> <td><?=$row['area']?></td> <td><?=$row['salary']?></td> <td><?=$row['graduation']?></td> <td><?=$row['postgraduation']?></td> <td><?=$row['skill']?></td> <td><a href="download.php?filename='.substr($row['resume'],0,200).'">Download Resume</td> <td><?=$row['price']?></td> </tr> <?php }?> <?php }?> <?php if(mysqli_num_rows($sql)=='') { echo 'Sorry!! No Data Found'; } ?> </tbody> </table> </div> </div> </div> </section> <!--// Forms content --> <?php include('include/footer.php') ?>