Mini Shell
<?php include'header.php'; ?>
<?php include'menu.php'; ?>
</div><!-- /#left -->
<div id="content">
<div class="outer">
<div class="inner bg-light lter">
<!--Begin Datatables-->
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<div class="icons">
<i class="fa fa-table"></i>
</div>
<h5>ALL Work & Events</h5>
</header>
<div id="collapse4" class="body">
<table id="dataTable" class="table table-bordered table-condensed table-hover table-striped">
<thead>
<tr>
<th>Date</th>
<th>News & Events</th>
<th></th><th></th>
</tr>
</thead>
<tbody>
<script>
function funproduc(e) {
if(e)
var cn=e;
window.location.href = "work_view.php?pp1="+ cn;
}
</script>
<script>
function funproduc_pic(e) {
if(e)
var cn=e;
window.location.href = "work_pic_edit.php?wid="+ cn;
}
</script>
<?php
$producpro=mysql_query("select * from work ");
while($producprofetch=mysql_fetch_row($producpro))
{
?>
<tr>
<td id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"><?php echo $producprofetch[3];?></td>
<td id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"><?php echo $producprofetch[1];?></td>
<td> <input type="button" value="view Details" class="btn btn-primary" id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"></td>
<td> <input type="button" value="View Pic" class="btn btn-success" id="<?php echo $producprofetch[0];?>" onClick="funproduc_pic(this.id);"></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div><!-- /.row -->
<!--End Datatables-->
</div><!-- /.inner -->
</div><!-- /.outer -->
</div><!-- /#content -->
</div><!-- /#wrap -->
<?php include'footer.php'; ?>
Zerion Mini Shell 1.0