Ejemplo de html usando el trtd
Bueno en este ejemplo muestro dos forms del uso del tr como ser mostrando datos de x base de datos o mostrando satos simples
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<table>
<?php
$conexion=mysql_connect("localhost","root","") or
die("Problemas en la conexion");
mysql_select_db("js",$conexion) or
die("Problemas en la selección de la base de datos");
$clavebuscada=mysql_query("select nombre from servicios",$conexion) or
die("Problemas en el select:".mysql_error());
$cont=1;
while($row = mysql_fetch_array($clavebuscada))
{
$nombree = $row['nombre'];
// echo "<h2 >".$nombree.":</h2>";
//echo "<br />Descripcion: ".$descripcion;
//echo "<br />Precio: ".$Precio;
//echo "<br />";echo "<br />";
if($cont==1){echo "<tr>".$cont; $color="#ff0000";}
echo "<td>"." <h2 style="."background-color:".$color.">IO"." ".$nonmbree."</h2> "."</td>";
$cont=$cont+1;
if($cont==4){echo "</tr><br>".$cont;$cont=1;$color= "#FFFFFF";}
}
mysql_close($conexion);
?>
</table>
<table>
<tr>
<td>Celda 1</td>
<td>Celda 2</td>
<td>Celda 3</td>
<td>Celda 4</td>
</tr>
</table>
</body>
</html>
Documento sin título
".$nombree.":
";
//echo "
Descripcion: ".$descripcion; //echo "
Precio: ".$Precio; //echo "
";echo "
"; if($cont==1){echo "".$cont; $color="#ff0000";} echo "
"."
"; $cont=$cont+1; if($cont==4){echo "
".$cont;$cont=1;$color= "#FFFFFF";} } mysql_close($conexion); ?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<table>
<?php
$conexion=mysql_connect("localhost","root","") or
die("Problemas en la conexion");
mysql_select_db("js",$conexion) or
die("Problemas en la selección de la base de datos");
$clavebuscada=mysql_query("select nombre from servicios",$conexion) or
die("Problemas en el select:".mysql_error());
$cont=1;
while($row = mysql_fetch_array($clavebuscada))
{
$nombree = $row['nombre'];
// echo "<h2 >".$nombree.":</h2>";
//echo "<br />Descripcion: ".$descripcion;
//echo "<br />Precio: ".$Precio;
//echo "<br />";echo "<br />";
if($cont==1){echo "<tr>".$cont; $color="#ff0000";}
echo "<td>"." <h2 style="."background-color:".$color.">IO"." ".$nonmbree."</h2> "."</td>";
$cont=$cont+1;
if($cont==4){echo "</tr><br>".$cont;$cont=1;$color= "#FFFFFF";}
}
mysql_close($conexion);
?>
</table>
<table>
<tr>
<td>Celda 1</td>
<td>Celda 2</td>
<td>Celda 3</td>
<td>Celda 4</td>
</tr>
</table>
</body>
</html>
Descripcion: ".$descripcion; //echo "
Precio: ".$Precio; //echo "
";echo "
"; if($cont==1){echo "".$cont; $color="#ff0000";} echo "
"."
IO"." ".$nonmbree."
".""; $cont=$cont+1; if($cont==4){echo "
".$cont;$cont=1;$color= "#FFFFFF";} } mysql_close($conexion); ?>
Celda 1 | Celda 2 | Celda 3 | Celda 4 |
Comentarios
Publicar un comentario