Horje
sum total free html code Code Example
sum total free html code
<?php include('header.php');?> <body><br><br><div class="container">	<div class="alert alert-success">Sum the Numbers in a Column</div>	<br />	<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white"  class="table table-striped table-bordered">		<thead>			<tr>				<th>Product Name</th>				<th>Quantity</th>				<th>Price</th>				<th>Amount</th>			</tr>		</thead>		<tbody>			<?php 				$query=mysql_query("select * from product")or die(mysql_error());				while($row=mysql_fetch_array($query)){				$id=$row['product_id'];			?>			<tr>				<td><?php echo $row['name'] ?></td>				<td><?php echo $row['qty'] ?></td>				<td><?php echo $row['Price'] ?></td>				<td><?php echo $row['amount'] ?></td>			</tr>			<?php } ?>		</tbody>	</table>	<?php		$result = mysql_query("SELECT sum(amount) FROM product") or die(mysql_error());		while ($rows = mysql_fetch_array($result)) {	?>	<div class="pull-right">		<div class="span">			<div class="alert alert-success"><i class="icon-credit-card icon-large"></i> Total: <?php echo $rows['sum(amount)']; ?></div>		</div>	</div>	<?php } 	$result1 = mysql_query("SELECT sum(qty) FROM product") or die(mysql_error());	while ($rows1 = mysql_fetch_array($result1)) {	?>		<div class="pull-right">		<div class="span">			<div class="alert alert-info"><i class="icon-credit-card icon-large"></i> Total number of Items: <?php echo $rows1['sum(qty)']; ?></div>		</div>	</div>	<?php } ?></div></body></html>




Html

Related
radio button in html Code Example radio button in html Code Example
order css file Code Example order css file Code Example
ifreame on page with random video Code Example ifreame on page with random video Code Example
how to use h1 tag Code Example how to use h1 tag Code Example
vue call method in html Code Example vue call method in html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12