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>View Product</h5>
</header>
<div id="collapse4" class="body">
<table id="dataTable" class="table table-bordered table-condensed table-hover table-striped">
<thead>
<tr>
<th>Name</th>
<th>Price</th>
<th></th>
</tr>
</thead>
<tbody>
<script>
function funproduc(e)
{
if(e)
var cn=e;
window.location.href = "product_view.php?id="+ cn;
}
</script>
<?php
$producpro=mysql_query("select * from product ");
while($producprofetch=mysql_fetch_row($producpro))
{
?>
<tr>
<td id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"><?php echo $producprofetch[1];?></td>
<td id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"><?php echo $producprofetch[2];?></td>
<td id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);"><button type="button" id="<?php echo $producprofetch[0];?>" onClick="funproduc(this.id);" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </button></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