Page 528 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 528
<style type="text/css">
table{
width:100%;
border-collapse: collapse;
}
th,tr,td{
border:1px solid #bcbcbc;
}
</style>
</head>
<body>
<?php include "recodeprint.php";?>
<tr align=center>
<font size =10> total price =
<?php
include "user.php";
$select = "select * from usertable";
$query = mysql_query($select , $connect);
$rows= mysql_num_rows($query);
for($i =0; $i<$rows; $i++)
{
$a = mysql_result($query,$i,price);
$total+=$a;
}
echo "$total";
?>
</font>
<font size =5 >
<a href="clear.php"><br>yes</a><!--테이블 전체 지우는 페이지로-->
<a href="../index.php">no</a></br></font><!--원래 페이지로-->
</body>
</html>
- 521 -