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="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>

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source