我正在创建一个电子商务商店,我认为我的 php 代码运行良好,我可以在我的页面中看到所有信息,但是代码干扰了我的页脚,这里是图像:
http://i.imgur.com/L99mqXl.png
我的php主页代码:
我的 php 产品代码:
<?php include('cms/conectar.php');
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<style>
.prodColuna { text-align:center; width:300px; float:left; height:100% }
</style>
<?php
$consulta = mysql_query("SELECT * FROM `livros-desporto` ");
if (isset($_POST['buscar'])) {
$consulta = mysql_query("
SELECT * FROM `livros-desporto` where name like '%".$_POST['buscar']."%'
");
}
while ($linha = mysql_fetch_array($consulta)) {
$id = $linha['ID'];
$modelo = $linha['Model'];
$nome = $linha['Name'];
$categoria = $linha['Category'];
$imagem = $linha['Image'];
$manufactura = $linha['Manufacturer'];
$preco = $linha['Price'];
$quantidade = $linha['quantity']
// $adicionar = '<a href="carrinho.php?id='.$linha['ID'].'"title="'.$linha['ID'].'">
// Adicionar </a>'
?>
<div id="espaço">
<!-- Categorias principais -->
<div id="baixo">
<div class="prodColuna">
<table width="200" height="300" border="1">
<tr>
<th colspan="2" scope="col" height="39"><?php echo $nome ?></th>
</tr>
<tr>
<td height="35" colspan="2"><?php echo $preco ?></td>
</tr>
<tr>
<td height="184" colspan="2"><?php echo $modelo ?></td>
</tr>
<tr>
<td width="39"><?php echo $categoria ?></td>
<td width="145" height="30"><?php echo $id ?></td>
</tr>
</table>
<br/>
</div>
<?php } ?>
</div>
</div>
</body>
</html>
它一定是我没有关闭的一些标签。