Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
boa noite, fiz uma tabela aki, e um cabeçalho, para ser impresso em todas as folhas
porém queria que apenas a parte do cabeçalho nao tenha borda e o resto tabela tenha
segue o codigo:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="[http://www.w3.org/1999/xhtml">](http://www.w3.org/1999/xhtml)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Carros Novos</title>
</head>
<body VLINK="blue">
<?php
require('conexao.php');
$query="SELECT * FROM novos ORDER BY id_novos";
$dados=mysql_query($query,$conn);
?>
<table width="775" border="1">
<thead>
<tr>
<td height="57">
<div align="center"><strong><u>Teste</u></strong>
</div>
</td>
<td colspan="6">
</td>
<td rowspan="2"><img src="imagens/logo.JPG" alt="Logo" width="111" height="102" /></td>
</tr>
<tr>
<td>
<div align="center"><strong>Estoque de Novos</strong></div></td>
<td colspan="6"> <div align="center"><?php
$data=date("d/m/Y");
echo $data;
?></div></td>
</tr>
<tr>
<td colspan="1"><div align="center">Modelo, Versão e Série</div></td><td><div align="center">Cor</div></td><td><div align="center">Status</div></td><td><div align="center">Chassi</div></td><td><div align="center">Valor</div></td><td><div align="center">Local</div></td><td><div align="center">Vendedor</div></td><td><div align="center">Responsável</div></td>
</tr>
</thead>
<tbody>?>
<tr>
<th scope="col"><? echo $result['mvs']; ?></th>
<th scope="col"><? echo $result['cor']; ?></th>
<th scope="col"><? echo $result['status']; ?></th>
<th scope="col"><? echo $result['chassi']; ?></th>
<th scope="col"><? echo $result['valor']; ?></th>
<th scope="col"><? echo $result['local']; ?></th>
<th scope="col"><? echo $result['vendedor']; ?></th>
<th scope="col"><? echo $result['responsavel']; ?></th>
</tr>?>
</tbody>
</table>
</body>
</html>Carregando comentários...