22/09/2005, 08:28
|
| | | Fecha de Ingreso: septiembre-2004
Mensajes: 468
Antigüedad: 20 años, 4 meses Puntos: 1 | |
Haber te posteo el Codigo y luego te explico como es la estructura.
la pagina es un index que llama a varios archivos php
1.- <? include ('Plantillas_Index/index_cabecera.php'); ?>
2.- <? include ('Plantillas_Index/plan_izquierda.php')?>
3.- <? include ('Plantillas_Index/plan_centro.php')?>
4.- <? include ('Plantillas_Index/plan_derecho.php')?>
5.- <? include ('Plantillas_Index/index_pie_pagina.php'); ?>
------------------------------------------------------------------
.......................................... 1 ..............................................
------------------------------------------------------------------
............|..................................... .......................|.................
............|..................................... .......................|.................
....2.......|...........................3. .............................|........4 ......
............|..................................... .......................|.................
............|..................................... .......................|.................
------------------------------------------------------------------
.......................................... 5 ..............................................
------------------------------------------------------------------
Bueno ese es el bosquejo que tengo lo que pasa que en dos estan las categorias y en 3 los articulos que corresponden a esa categoria y el problema es cuando tengo varios articulos.
Bueno eso es todo lo que lo puedo decir
********************* index.php************************* <?php
include("Ventas/config_cesta.php");
$cod=$_GET['codi_fami'];
$sub=$_GET['codi_sub'];
$ok=$_GET['ok'];
$arti=$_GET['arti'];
$ban=0;
$consulta_categorias =mysql_query("SELECT * FROM familias order by nom_fam ",$conectar);
$consu=mysql_query("SELECT cod_sub_fam,nom_sub_fam FROM sub_familias WHERE cod_fam='$cod'",$conectar);
$consul = mysql_query("SELECT * FROM articulos WHERE cod_sub_fam='$sub'",$conectar);
$consulta_novedad=mysql_query("SELECT * FROM articulos WHERE nov_art='Si'",$conectar);
$consulta_ofertas=mysql_query("SELECT * FROM articulos WHERE ofe_art='Si'",$conectar);
$consu_cantidad=mysql_query("SELECT count(*) FROM articulos WHERE cod_sub_fam='$sub'",$conectar);
$num=mysql_result($consu_cantidad,0,0);
$_pagi_sql = "SELECT * FROM articulos WHERE cod_sub_fam='$sub'";
$_pagi_cuantos = 6;
$cantidad=mysql_query("SELECT Sum(can_art) as cant FROM cesta WHERE cookieId='".GetCartId()."' ",$conectar);
$var_cant=mysql_result($cantidad,0,"cant");
$total=mysql_query("SELECT Sum(cesta.can_art*articulos.pre_art) as tot FROM cesta,articulos WHERE cesta.cod_art=articulos.cod_art AND cookieId='".GetCartId()."' ",$conectar);
$var_total=mysql_result($total,0,"tot")*1.16;
?>
<script language="JavaScript" src="JavaScript/validar_ventas.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="Estilos_CSS/esti_ventas.css">
<? include ('Plantillas_Index/index_cabecera.php'); ?>
<table width="770" align="center" cellpadding="0" cellspacing="0" bgcolor="#ECF3FB">
<tr>
<th scope="col"><table width="765" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<th valign="top" bgcolor="#ECF3FB" scope="col"> <? include ('Plantillas_Index/plan_izquierda.php')?>
</th>
<th colspan="2" valign="top" bgcolor="#FCEEBD" scope="col"> <? include ('Plantillas_Index/plan_centro.php')?>
</th>
<th width="165" valign="top" bgcolor="#ECF3FB" scope="col">
<? include ("Plantillas_Index/plan_derecha.php"); ?>
</th>
</tr>
</table>
</th>
</tr>
</table>
<? include ('Plantillas_Index/index_pie_pagina.php'); ?>
********************* fin index.php*************************
[COLOR=DarkRed]*********************** plan_izquierda.php ******************
<table width="170" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F7C459" class="Middle_Border">
<tr>
<th><div align="center" class="Estilo1">Acceso a clientes</div></th>
</tr>
</table>
<table width="168" align="center" class="Middle">
<tr>
<td>
<FORM action=javascript:valida_clientes(); method=post name=frmClientes class="form" id=frmClientes>
<table width="162">
<tr>
<td class="Estilo12">Usuario</td>
<td><input name="txt_usuario" type="text" class="caja_cliente_index" id="txt_usuario"></td>
</tr>
<tr>
<td class="Estilo12">Clave</td>
<td><input name="txt_clave" type="password" class="caja_cliente_index" id="txt_clave"></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input name="btn_ingresar" type="submit" class="boton" id="btn_ingresar" value="Ingresar" >
<input name="btn_registrarse" type="submit" class="boton" id="btn_registrarse" value="Registrarse" onClick="nuevo()">
</div></td>
</tr>
</table>
</form></td>
</tr>
</table>
<table width="170" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F7C459" class="Middle_Border">
<tr>
<td><div align="center" class="Estilo1"><strong>Familias</strong></div></td>
</tr>
</table> <?php
$consulta =mysql_query("SELECT * FROM familias ORDER BY nom_fam ",$conectar);
while ($fam=mysql_fetch_array($consulta)) {
$codi_familia=$fam['cod_fam'];
$nomb_familia=$fam['nom_fam'];
?>
<table width="170" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="25" background="Imagenes/Web/fondo_familia.jpg" class="Estilo13" scope="col"><div align="left" > <img src="Imagenes/Web/boton_mas.jpg" width="9" height="9"> <?php echo $nomb_familia; ?></div></th></tr>
<tr>
<td height="5">
<?php $consu_sub=mysql_query("SELECT * FROM sub_familias WHERE cod_fam='$codi_familia' "); ?>
<table width="152" border="0" align="right" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" background="Imagenes/Web/sub_family.jpg" class="bor">
<?php while ($subfam=mysql_fetch_array($consu_sub))
{
$v=$subfam['cod_sub_fam'];
$consul_registros=mysql_query("SELECT * FROM articulos, sub_familias WHERE (sub_familias.cod_sub_fam=$v) AND (articulos.cod_sub_fam=sub_familias.cod_sub_fam) ");
$numero=mysql_num_rows($consul_registros);
if ($numero != 0)
{
?>
<tr>
<th width="152" height="21" valign="middle" scope="col"><div align="left"> <?php echo "<a href=\"index.php?codi_fami=$fam[cod_fam]&codi_sub=$subfam[cod_sub_fam]&ok=1&arti=1\" class='esti3'>$subfam[nom_sub_fam]</a>"; ?></div></th>
</tr>
<?php } //fin de num
} // fin de while ?>
</table>
</td>
</tr>
</table>
<?php } //fin de while ?>
Luego le envio les resto en otro mensaje porque no alcanza |