?
Path : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/ |
Current File : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/inpatnacontent.php |
<div class="content-wrapper"> <form action="#" method="post"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Places <small> to see in Patna</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Places</li> </ol> </section> <!-- Main content --> <section class="content"> <!-- Small boxes (Stat box) --> <div class="row"> <div class="col-xs-12"> <div class="box"> <?php $query = "select * from in_patna order by id desc"; $run = mysqli_query($con, $query); if(mysqli_num_rows($run)>0) { ?> <div class="box-header"> <h3 class="box-title">All Places in Patna</h3> <div class="clear"></div> <div class="col-md-6"> </div> <div class="col-md-3"></div> <div class="col-md-3"><a href="newinpatna.php" class="btn btn-block btn-primary">Add New Place</a></div> </div> <!-- /.box-header --> <div class="box-body"> <?php if(isset($error)){ echo "<span style='color:red;' class='pull-right'>$error</span>"; } else if(isset($msg)){ echo "<span style='color:green;' class='pull-right'>$msg</span>"; } ?> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th><input type="checkbox" id="selectallboxes" /></th> <th>Sr #</th> <th>Title</th> <th>desc</th> <th>Image</th> <th>Edit</th> <th>Del</th> </tr> </thead> <tbody> <?php while($row=mysqli_fetch_array($run)) { $id = $row['id']; $title = ucfirst($row['title']); $desc = $row['description']; $image = $row['image']; ?> <tr> <td><input type="checkbox" class="checkboxes" name="checkboxes[]" value="<?php echo $id; ?>" /></td> <td><?php echo $id; ?></td> <td><?php echo $title; ?></td> <td><?php echo $desc; ?></td> <td><img src="img/page/places/<?php echo $image; ?>" width="20%" /></td> <td><a href="edit_inpatna.php?edit=<?php echo $id; ?>"><i class="fa fa-pencil"></i></a></td> <td><a href="in_patna.php?del=<?php echo $id; ?>"><i class="fa fa-times"></i></a></td> </tr> <?php } ?> </tbody> <tfoot> <tr> <th><input type="checkbox" /></th> <th>Sr #</th> <th>Title</th> <th>desc</th> <th>Image</th> <th>Edit</th> <th>Del</th> </tr> </tfoot> </table> </div> <!-- /.box-body --> <?php } else { echo "<center><h3>No Photo available now!!</h3></center>"; } ?> </div> <!-- /.box --> </div> </div> <!-- /.row --> <!-- Main row --> <!-- /.row (main row) --> </section> <!-- /.content --> </form> </div>