Error en un div

hamedm Seguir

Gamma
Programador
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Desde
7 Ene 2013
Mensajes
193
Hola Forobetanos,

Tengo un problema, la cual no he podido encontrar,

Si se dirigen a Productos-Sabz Goltab-Pagina Web Oficial-Vajillas en Melamine, se daran cuenta que los fieldsets no estan funcionando, y no se porque, pues yo creo que es en la posicion en que la puse,

Aqui les pongo los codigos:

PHP:
<!doctype>
<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<title>Productos-Sabz Goltab-Pagina Web Oficial-Vajillas en Melamine</title>
		<link rel="stylesheet" href="CSS/index.css" type="text/css">
	<style type="text/css">
	fieldset{
	border: red blue 10px;
	margin-left:200px;
	margin-right:220px;
	}
	legend{
	color:red;
	}
	.main_product{
	margin-left:10px;
	margin-top:25px;
	width:275px;
	height:275px;
	border: 5px solid #0FF61E;
	border-radius: 3px;
	float:left;
	}
	.product_image{
	width:265px;
	height:200px;
	}
	.product_image img{
	width:265px;
	height:200px;
	margin:5px;
	}
	.product_information{
	width:265px;
	height:75px;
	margin:10px 5px 5px 5px;
	}
	.product_information tr td{
	text-align:center;
	font-weight:bold;
	}
	.product_information tr td a:hover{
	text-align:center;
	font-weight:bold;
	cursor:pointer;
	}
	</style>
	</head>
<body>
<?php
include ('header.php');
$conexion=mysql_connect("localhost","timersco_usuario","contraseña");
$bd="timersco_base";
$sql1="select * from categorias";
$resultado1=mysql_db_query ($bd,$sql1,$conexion);

while ($row=mysql_fetch_array($resultado1))
{  
?>
<fieldset>
	<legend><?php echo $row["tipo"]; ?></legend>
<?php
 
	$sql2='select * from productos where id_producto='.$row["ID"].' ';
	$resultado2=mysql_db_query ($bd,$sql2,$conexion);
	while ($yo=mysql_fetch_array($resultado2))
	{
		
		
		?> 
<div class="main_product">
	<div class="product_image">
		<img src="fotos/<?php echo $yo["imagen"]; ?>">
    </div>
    <div class="product_information">
		<table width="265" height="50" bgcolor="#0f95f6">
			<tr>
				<td style="text-align:center; color:white;" width:265px: height:50px;><?php echo $yo["nombre"]; ?></td>
			</tr>
			<tr>
				<td style="cursor:pointer;background-color:#F6F60F; border:2px solid #F6F60F; border-radius:3px;padding:0px; width:5px;height:10px;" ><a href="">Ver Mas</a></td>
			</tr>
		</table>
    </div>
</div>
 <?php
}
}
 ?>
</fieldset>
</body>
</html>

Espero que me puedan Ayudar
 
Última edición:

vicram10

Épsilon
Programador
Verificación en dos pasos activada
Verificado por Whatsapp
¡Ha verificado su Paypal!
Desde
8 May 2013
Mensajes
751
Edad
39
Esto
Insertar CODE, HTML o PHP:
}
 ?>
</fieldset>

Cambia por este otro

Insertar CODE, HTML o PHP:
</fieldset> 
}
 ?>

El cierre del fieldset lo debes hacer dentro del bucle que imprime el tipo.. en tu codigo esta afuera..

Pd.: en tu codigo siempre antes de mostrar debes proteger tus datos de la base,para evitar problemas.
 

Eckonet

Gamma
Redactor
Desde
16 Sep 2011
Mensajes
269
Por favor, ten en cuenta 📝 que si deseas hacer un trato 🤝 con este usuario, está baneado 🔒.
Quita la información de la bases de datos.
 
Arriba