Exemple #1
0
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <link rel="stylesheet" type="text/css" href="style.css" />
        <title>E Retail System</title>
    </head>
    <body>
    	<div class="header">
    		<h2>E Retail Store</h2>
    	</div>
    	
    	<div class="container">
    		<div class="main">
    			<?php 
if ($category_id == 0) {
    $result = $admin->getAllProduct();
    while ($row = mysql_fetch_array($result)) {
        ?>
    			<div class="product left">
    				<div class="product_header">
    					<h3 class="left_head"><?php 
        echo ucfirst($row[1]);
        ?>
</h3><h3 class="right_head">Rs. <?php 
        echo $row[2];
        ?>
</h3>
    					<div class="clear"></div>
    				</div>
    				<div class="product_image">
    					<?php