?
Path : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/ |
Current File : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/pagecontent.php |
<div class="content-wrapper"> <form action="#" method="post"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Page <small> Details</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Pages</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 cms order by id desc"; $run = mysqli_query($con, $query); if(mysqli_num_rows($run)>0) { ?> <div class="box-header"> <h3 class="box-title">All Page Here</h3> <div class="clear"></div> <div class="col-md-6"> </div> <div class="col-md-3"></div> <div class="col-md-3"><a href="newpage.php" class="btn btn-block btn-primary">Add New Page</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>Meta Title</th> <th>Date</th> <th>Image</th> <th>Header 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']); $mtitle = ucfirst($row['mtitle']); $desc = $row['desc']; $status = $row['status']; $image = $row['image']; $himage = $row['header_image']; $date = getdate($row['date']); $day = $date['mday']; $month = substr($date['month'],0,3); $year = $date['year']; ?> <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 $mtitle; ?></td> <td><?php echo "$day $month $year"; ?></td> <td><img src="img/page/<?php echo $image; ?>" width="30%" /></td> <td><img src="img/page/banner/<?php echo $himage; ?>" width="30%" /></td> <td><a href="edit-page.php?edit=<?php echo $id; ?>"><i class="fa fa-pencil"></i></a></td> <td><a href="allpages.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>Meta Title</th> <th>Date</th> <th>Image</th> <th>Header Image</th> <th>Edit</th> <th>Del</th> </tr> </tfoot> </table> </div> <!-- /.box-body --> <?php } else { echo "<center><h3>No user available now!!</h3></center>"; } ?> </div> <!-- /.box --> </div> </div> <!-- /.row --> <!-- Main row --> <!-- /.row (main row) --> </section> <!-- /.content --> </form> </div>