jorgerabello
(usa Ubuntu)
Enviado em 08/08/2012 - 10:22h
Olá Senhores muito obrigado pelas dicas, fiz assim:
#Codigo Para Desenhar Um Tabuleiro:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
td {
background-color: #666;
text-align: center;
}
#red {
background-color: red;
}
</style>
<title></title>
</head>
<body>
<?php
for ($i=0; $i <= 2; $i++) {
print "<table border=1 width=30%>";
print "<tr>";
print "<td id=red height=50px height=50px>";
print "</td>";
print "<td height=50px height=50px>";
print "X";
print "</td>";
print "<td id=red height=50px height=50px>";
print "</td>";
print "<td height=50px height=50px>";
print "X";
print "</td>";
print "<td id=red height=50px height=50px>";
print "</td>";
print "</tr>";
print "<tr>";
print "<td height=50px height=50px>";
print "X";
print "</td>";
print "<td id=red height=50px height=50px>";
print "</td>";
print "<td height=50px height=50px>";
print "X";
print "</td>";
print "<td id=red height=50px height=50px>";
print "</td>";
print "<td height=50px height=50px>";
print "X";
print "</td>";
print "</tr>";
print "</table>";
}
?>
</body>
</html>
Gostaria de saber a opnião dos senhores que certamente são muito mais experientes do que eu:
Existe alguma forma de fazer que não seja assim ? (ou seja utilizando HTML/CSS)
GRATO !