Comercio Virtual

¿Hola Nahuelon, que tal?
Me dirijo a ti para hacerte una consulta que tengo. Me hace falta introducir en una web que he ido desarrollando un pequeño comercio, donde poder vender algunas productos. Mucha gente me ha recomendado que aprenda a programar en PHP pero debido a que no tengo mucho tiempo pensé que quizás habría algún software para poder hacer una tienda virtual.
No tengo ni idea, ¿tu sabes algo de esto? También quisiera preguntarte que en caso de no existir ningún software como podría (si existe el caso) adquirir algún patrón de tienda y posteriormente adaptarmelo yo a mis necesidades. Si sabes de alguien o alguna forma de encontrarlo (aunque sea pagando) te agradecería mucho me lo comentaras.
Un saludo

1 Respuesta

Respuesta
1
Hi,
Mira, lo que te recomiendo es que mires mi código pero empieces a confeccionar el carrito con tus propias manos así vas viendo donde esta cada cosa.
El tema del carrito es un tema muy delicado ya que cada negocio o sitio necesita de un carrito particular a la acción del negocio. Lo que te voy a mandar es un carrito que cree para un shopping virtual por lo tanto están casi todos los rubros y las formas de pago cubiertas.
Bueno, empecemos:
- El carrito cuenta con 3 Cookies principales:
- Elementos: es un contador que se utiliza como indice en el Cookie Items y da la cantidad de elementos en el carrito.
- Items[]: es el que lleva los datos de cada producto (y su respectivo negocio) dentro del carrito. Se utiliza con un indice para referenciar a un producto en particular. Para agregar un producto se incremente en 1 el valor de Elementos y se agrego el producto a Items[Elementos].
- Total: lleva el total de la compra. Cada vez que se quita o agrega un producto se actualiza su valor dependiendo del precio del producto.
- La sección de AGREGAR es la encargada de agregar un producto a Items[] y actualizar los valores de Elementos y Total.
La forma de agregar un producto al Cookie Items[] es de malísima eficiencia pero es compatible con PHP3 lo que hace que se pueda utilizar en cualquier configuración PHP3 o PHP4.
Lo que se hace es agregar unas asignaciones en código PHP que después con la función EVAL() se ejecutan y se pueden utilizar estas variable con los valores correspondientes al producto seleccionado.
- La sección de ACTUALIZAR modifica valores de la cantidad de Cuotas o Unidades lo cual necesita hacer un EVAL() del Cookie Items[N] para saber los valores anteriores del producto.
Obviamente esto hace que se modifique el valor del Cookie Total calculando los intereses para la cantidad de cuotas para el negocio correspondiente.
- La sección QUITAR saca un elemento del Cookie Items[] y actualiza los valores de los Cookies Total y Elementos.
Después de la eliminación se debe hacer un FOR para subir todos los elementos de Items[] una posición para conservar la continuidad en el array Items[].
- La sección MOSTRAR es la encargada de mostrar el contenido del Cookie Items[]. Se hace un WHILE si se muestra el contenido de cada producto dentro de un formulario HTML para poder Actualizar o Quitar productos individualmente al mandar solo los datos de este producto.
- Cuando se termina la agregación de productos se presiona el botón CONTINUAR que lleva a la sección CONTINUAR.
En esta sección se muestran el contenido del Cookie Items[] sin la posibilidad de modificaciones y se pregunta (en un formulario) el nombre de usuario, la contraseña y la forma de pago.
Listo el tema del carrito.
Una vez que se ingresaron los datos y se mando el formulario se llama al script COMPRAR.PHP que es el encargado de verificar si existe o no el usuario y si la contraseña es valida.
*************************************************************************
********************** ALCARRITO.PHP ************************************
*************************************************************************
<?
$hostname = "localhost";
$user = "nahuelon";
$database = "nahuelon";
$password = "nahuelon";
mysql_connect($hostname, $user, $password);
if ($Yacompro == 1) {
SetCookie("Yacompro", 0, time()+3600);
$Elementos = 0;
SetCookie("Elementos", 0, time()+3600);
$Total = 0;
SetCookie("Total", 0, time()+3600);
};
if ($accion != "") {
switch ($accion) {
case "agregar":
/* ################################################## */
/* ################## AGREGAR ################## */
/* ################################################## */
$resultpro = mysql($database,"select * from Productos where ID_PRODUCTO=$producto");
$negociopro = mysql_result($resultpro, 0, "ID_NEGOCIO");
$precio = mysql_result($resultpro, 0, "PRECIO");
$resultneg = mysql($database,"select * from Negocios where ID_NEGOCIO=$negociopro");
$neg = mysql_result($resultneg, 0, "NOMBRE");
$cant = 1;
$caractpro = "Sin Caracteristica";
$pagos = 1;
$Elementos++;
SetCookie("Elementos", $Elementos, time()+3600);
$producto = intval($producto);
$solo = "\$cant=\"$cant\";\$prod=\"$producto\";\$caract=\"$caractpro\";\$precio=\"$precio\";\$pagos=\"$pagos\";\$neg=\"$neg\";";
$items[$Elementos] = $solo;
SetCookie("items[$Elementos]", "$solo", time()+3600);
$Total = $Total + $precio;
SetCookie("Total", $Total, time()+3600);
break;
case "actualizar":
/* ################################################## */
/* ################## ACTUALIZAR ################## */
/* ################################################## */
$pagosfield1 = "";
$pagosfield2 = "";
$solo = $items[$elem];
eval($solo);
if ($pagos == 1) {
$pagospro = 0;
} else {
$pagosfield1 = "CUOTA" . $pagos;
$resultneg = mysql($database,"select * from Negocios where NOMBRE='$neg'");
$pagospro = mysql_result($resultneg, 0, "$pagosfield1");
};
if ($que == "pagos") {
if ($pagosnuevo != $pagos) {
$subtotal = $precio * (1 + $pagospro);
$Total = $Total - (intval($cant) * $subtotal);
if ($pagosnuevo == 1) {
$pagosnuevopro = 0;
} else {
$pagosfield2 = "CUOTA" . $pagosnuevo;
$resultneg = mysql($database,"select * from Negocios where NOMBRE='$neg'");
$pagosnuevopro = mysql_result($resultneg, 0, "$pagosfield2");
};
$subtotal = $precio * (1 + $pagosnuevopro);
$Total = $Total + (intval($cant) * $subtotal);
$pagos = $pagosnuevo;
};
} else { /* EMPIEZA CANTIDAD */
if (($cantnueva == "0") || ($cantnueva == "")) {
$cantnueva = "1";
};
$subtotal = $precio * (1 + $pagospro);
$Total = $Total - (intval($cant) * $subtotal);
$Total = $Total + (intval($cantnueva) * $subtotal);
$cant = $cantnueva;
}; /* FIN IF QUE */
SetCookie(Total, $Total, time()+3600);
$caractpro = $caract;
$solo = "\$cant=\"$cant\";\$prod=\"$prod\";\$caract=\"$caractpro\";\$precio=\"$precio\";\$pagos=\"$pagos\";\$neg=\"$neg\";";
$items[$elem] = $solo;
SetCookie("items[$elem]", $solo, time()+3600);
break;
case "quitar":
/* ################################################## */
/* ################## QUITAR ################## */
/* ################################################## */
$solo = $items[$elem];
eval($solo);
if ($pagos == 1) {
$pagospro = 0;
} else {
$pagosfield1 = "CUOTA" . $pagos;
$resultneg = mysql($database,"select * from Negocios where NOMBRE='$neg'");
$pagospro = mysql_result($resultneg, 0, "$pagosfield1");
};
$subtotal = $precio * (1 + $pagospro);
$Total = $Total - (intval($cant) * $subtotal);
SetCookie(Total, $Total, time()+3600);
for($i=$elem;$i<=$Elementos-1;$i++) {
$items[$i] = $items[$i+1];
SetCookie("items[$i]", $items[$i+1], time()+3600);
};
$Elementos--;
SetCookie("Elementos", $Elementos, time()+3600);
break;
}; /* FIN SWITCH */
};
/*000000000000000000000000000000000000000000000000000000000000*/
/*000000000000 MOSTRAR 00000000000000000000*/
/*000000000000000000000000000000000000000000000000000000000000*/
$Total = number_format($Total,2);
$Total = str_replace(".", ",", $Total);
?>
<html>
<head>
<title>TUEMPRESA.com - Mi Carrito de Compras</title>
<style type="text/css">
<!--
.texto { font-family: Arial, Helvetica, sans-serif; font-size: 12px; text-decoration: none;}
.texton { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none;}
.titulo { font-family: Arial, sans-serif; font-size: 15px; font-weight: bold; text-decoration: none;}
.dato { font-family: Arial, sans-serif; font-size: 13px; font-weight: bold; text-decoration: none;}
.datosn { font-family: Arial, sans-serif; font-size: 13px; text-decoration: none;}
.datom { font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none;}
.datoc { font-family: Arial, Helvetica, sans-serif; font-size: 9px; text-decoration: none;}
.titulito { font-family: Arial, sans-serif; font-size: 1px; text-decoration: none;}
.produtit { font-family: Arial, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none;}
.envio { font-family: Arial, Helvetica, sans-serif; color: #ff0000; font-size: 10px; font-weight: bold; text-decoration: none;}
.descrip { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; text-decoration: none;}
.precioc { font-family: Arial, Helvetica, sans-serif; font-size: 15.8px; font-weight: bold; text-decoration: none;}
.preciog { font-family: Arial, Helvetica, sans-serif; font-size: 18.8px; font-weight: bold; text-decoration: none;}
-->
</style>
<script languaje = "JavaScript">
<!--
function checkvacios() {
if (document.compra.usuario.value == '') {
alert('Debe ingresar su Nombre de Usuario.'); document.compra.usuario.focus();
} else if (document.compra.password.value == '') {
alert('Debe ingresar su Contraseña.'); document.compra.password.focus();
} else if (document.compra.formapago.selectedIndex == 0) {
alert('Debe ingresar la Forma de Pago.');
} else if (document.compra.formapago.selectedIndex == 1) {
if (document.compra.nombrem.value == '') {
alert('Debe ingresar el Nombre como figura en su Tarjeta de Credito.');
popUp('tarjetaMWin', true);
document.compra.nombrem.focus();
} else if (document.compra.numerom.value == '') {
alert('Debe ingresar el Numero de su Tarjeta de Credito.');
popUp('tarjetaMWin', true);
document.compra.numerom.focus();
} else if (document.compra.codsegm.value == '') {
alert('Debe ingresar el Codigo de Seguridad que aparece detras de su Targeta de Credito.');
popUp('tarjetaMWin', true);
document.compra.codsegm.focus();
} else if ((document.compra.mesm.selectedIndex == 0) || (document.compra.anom.selectedIndex == 0)) {
alert('Debe ingresar la Fecha de Expiracion de su Targeta de Credito.');
popUp('tarjetaMWin', true);
} else document.compra.submit();
} else if (document.compra.formapago.selectedIndex == 2) {
if (document.compra.nombrev.value == '') {
alert('Debe ingresar el Nombre como figura en su Tarjeta de Credito.');
popUp('tarjetaVWin', true);
document.compra.nombrev.focus();
} else if (document.compra.numerov.value == '') {
alert('Debe ingresar el Numero de su Tarjeta de Credito.');
popUp('tarjetaVWin', true);
document.compra.numerov.focus();
} else if (document.compra.codsegv.value == '') {
alert('Debe ingresar el Codigo de Seguridad que aparece detras de su Targeta de Credito.');
popUp('tarjetaVWin', true);
document.compra.codsegv.focus();
} else if ((document.compra.mesv.selectedIndex == 0) || (document.compra.anov.selectedIndex == 0)) {
alert('Debe ingresar la Fecha de Expiracion de su Targeta de Credito.');
popUp('tarjetaVWin', true);
} else document.compra.submit();
} else document.compra.submit();
}
function ventanaNueva(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
function reembolso() {
if (document.compra.formapago.selectedIndex == 3) {
popUp('tarjetaMWin',false);
popUp('tarjetaVWin',false);
<?
if ($Elementos > 0) {
$si = "if (";
for ($i=1;$i<=$Elementos;$i++) {
$si = $si . "(document.prod$i.pagosnuevo.selectedIndex != 0) || ";
};
$si = substr($si, 0, -4) . ") {\n";
echo "$si\n";
echo "
alert('Para abonar con Contra Reembolso debe tener todos los productos en UN solo pago');
document.compra.formapago.selectedIndex = 0;
};
";
};
?>
} else if (document.compra.formapago.selectedIndex == 1) {
popUp('tarjetaVWin',false);
popUp('tarjetaMWin',true);
} else if (document.compra.formapago.selectedIndex == 2) {
popUp('tarjetaMWin',false);
popUp('tarjetaVWin',true);
} else if (document.compra.formapago.selectedIndex == 0) {
popUp('tarjetaMWin',false);
popUp('tarjetaVWin',false);
}
}
function continua() {
<?
if ($Elementos == 0) {
echo "alert('Debe tener por lo menos un producto para poder continuar.');
";
} else {
echo "document.continuar.submit();\n";
};
?>
}
//-->
</script>
<script language="Javascript1.2">
<!--
function ventanaNueva(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script language="JavaScript">
<!--
/*
Debugging:
$IE4 = 1 $IE3 = $NS4 = $NS3 = $X11 = $HAVE_STYLE = 1*/
var loaded = 0;
var gotlayers = 0;
// -->
</script>
<script language="JavaScript1.2">
<!--
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;
function moveLayers() {
if (gotlayers) {
if (NS4) {
document.layers['tarjetaMWin'].left = 100;
document.layers['tarjetaMWin'].top = 170;
document.layers['tarjetaVWin'].left = 100;
document.layers['tarjetaVWin'].top = 170;
} else {
document.all['tarjetaMWin'].style.pixelLeft = 282;
document.all['tarjetaMWin'].style.pixelTop = 244;
document.all['tarjetaVWin'].style.pixelLeft = 282;
document.all['tarjetaVWin'].style.pixelTop = 244;
}
}
}
function popUp(menuName,on) {
if (gotlayers) {
if (on) {
moveLayers();
if (NS4) {
document.layers[menuName].visibility = "show";
} else {
document.all[menuName].style.visibility = "visible";
}
} else {
if (NS4) {
document.layers[menuName].visibility = "hide";
} else {
document.all[menuName].style.visibility = "hidden";
}
}
}
}
// -->
</script>
</head>
<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0 bgcolor=009191 text=000000 link=000000 vlink=000000>
<table border=0 width=780 cellpadding=0 cellspacing=0>
<tr>
<td width=1% height=10 bgcolor=009191 valign=top><img src="../images/home/logoai.gif">
</td>
<td bgcolor=009191 valign=top>
<font size=1><br></font>
<table border=0 width=100% cellpadding=0 cellspacing=0>
<tr><td>
<table border=0 width=100% cellpadding=0 cellspacing=0>
<tr>
<td width=50%></td>
<td bgcolor=009191 valign=bottom><a href="/home.htm" onMouseOver="arriba('m0');window.status='Ofertas';return true"
onMouseOut="fuera('m0');return true"><img name="m0" src="../images/home/ofertas1.gif" border=0></td>
<td width=2%></td>
<td bgcolor=009191 valign=bottom><a href="/phpfiles/buscarproductos.php3?primera=si" onMouseOver="arriba('m1');window.status='Buscar Productos';return true"
onMouseOut="fuera('m1');return true"><img name="m1" src="../images/home/productos1.gif" border=0></a></td>
<td width=2%></td>
<td bgcolor=009191 valign=bottom><a href="/phpfiles/buscarnegocios.php3?primera=si" onMouseOver="arriba('m2');window.status='Negocios Adheridos';return true"
onMouseOut="fuera('m2');return true"><img name="m2" src="../images/home/negocios1.gif" border=0></a></td>
<td width=2%></td>
<td bgcolor=009191 valign=bottom><a href="/servicios.htm" onMouseOver="arriba('m3');window.status='Servicos en General';return true"
onMouseOut="fuera('m3');return true"><img name="m3" src="../images/home/servicios1.gif" border=0></a></td>
<td width=2%></td>
<td bgcolor=009191 valign=bottom><a href="/phpfiles/agregarusuario.php3" onMouseOver="arriba('m4');window.status='Registrese Gratis';return true"
onMouseOut="fuera('m4');return true"><img name="m4" src="../images/home/registrese1.gif" border=0></a></td>
<td width=2%></td>
<td bgcolor=009191 valign=bottom><img name="m5" src="../images/home/carrito2.gif" border=0></td>
<td width=2%></td>
</tr>
</table>
</td>
</tr><tr>
<td bgcolor=beffff height=600 valign=top>
<p align=left class="descrip"><img src="../images/home/puntaari.gif">
<br>
<!-- *************************************************************************************************************** -->
<!-- ***************************************** PAGINA PRINCIPAL *********************************************** -->
<!-- *************************************************************************************************************** -->
<?
if ($Elementos == 0) {
$donde = "";
};
if ($donde == "continuar") {
$texto = "
Completando los siguientes datos
concluirá la compra y obtendrá sus productos dentro de las 72 Hs. Para realizar una
compra Ud. tiene que estar registrado en <font
class=\"texton\">TUEMPRESA.com</font>. Si todavía no lo está
<a
href=\"/phpfiles/agregarusuario.php3\" class=\"texton\">PRESIONE AQUÍ</a> para registrarse.
";
} else {
$texto = "
Ud. está en la sección de <font class=\"texton\">\"Mi carrito\"</font>
donde podrá ver su carrito o canasto de compra con los productos que Ud. ha agregado.
Desde aquí podrá elegir la cantidad de pagos por cada producto individualmente.
<br>
Una vez <font class=\"texton\">llenado su carrito</font> debe presionar el <font
class=\"texton\">botón de \"Continuar\"</font> donde se le pedirá el <font
class=\"texton\">Nombre de Usuario, la Contraseña y la Forma de Pago.</font>
";
};
echo "
<table border=0 width=100% cellpadding=0 cellspacing=0>
<tr>
<td valign=top rowspan=2 width=10></td>
<td valign=top><font class=\"texto\">$texto
<center><br>
<img src=\"../images/home/negro1x1.gif\" width=500 height=1><br>
</td>
</tr>
</table>
";
if ($donde == "continuar") {
echo "
<center>
<!-- ********************************* DATOS DEL USUARIO *********************************-->
<form name=\"compra\" action=\"/phpfiles/comprar.php3\" method=post>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td bgcolor=ffc410 width=478><img src=\"../images/home/puntana.gif\"><img src=\"../images/home/negro1x1.gif\" width=470 height=2 align=top></td>
</tr>
<tr>
<td valign=top rowspan=2>
<table border=0 width=100% cellpadding=0 cellspacing=0>
<tr>
<td valign=top rowspan=2><img src=\"../images/home/negro1x1.gif\" width=2 height=100></td>
<td bgcolor=ffc410 width=100%><center><font class=\"titulo\" color=000000>Datos del Usuario</td>
</tr>
<tr>
<td bgcolor=beffff valign=top>
<br><center>
<table border=0 cellpadding=3 cellspacing=0>
<tr>
<td valign=top><font class=\"dato\">Nombre de Usuario<font color=ff0000>(*)</td>
<td valign=top><input type=text name=\"usuario\" value=\"\" size=8 maxlength=8></td>
<td valing=top><font class=\"dato\">Contraseña<font color=ff0000>(*)</td>
<td valign=top><input type=password name=\"password\" value=\"\" size=8 maxlength=8></td>
</tr>
<tr>
<td valing=top><font class=\"dato\">Forma de Pago<font color=ff0000>(*)</td>
<td valign=top>
<select name=\"formapago\" onChange=\"reembolso();\"><option value=\"\">Elija Forma de Pago</option>
<option value=\"M\">MasterCard</option> <option value=\"V\">Visa</option>
<option value=\"C\">Contra Reembolso</option>
</select>
</td>
<td valign=top colspan=2>
<center>
<a href=\"javascript:checkvacios();\" onMouseOver=\"arriba('t3');window.status='Realizar Compra';return true\" onMouseOut=\"fuera('t3');return true\"><img name=\"t3\" src=\"../images/home/b_comprar1.gif\" border=0></a>
</td>
</tr>
</table>
</tr>
</table>
</td>
</tr>
</table>
<div id=\"tarjetaMWin\" style=\"position: absolute; z-index: 20; visibility: hidden; top: 0px; left: 0px;\">
<table background=\"../images/home/fondomaster.gif\" border=0 width=249 height=149 cellpadding=3 cellspacing=0>
<tr><td width=10 rowspan=5>
</td></tr>
<tr><td valign=middle>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td valign=middle><font class=\"dato\">Nombre</td>
<td valign=top><input type=text name=\"nombrem\" value=\"\" size=17 maxlength=30 class=\"datosn\"></td>
</tr>
<tr>
<td colspan=2></font><font class=\"datom\">(como aparece en su tarjeta)
</tr>
<tr>
<td valign=middle><font class=\"dato\">Número</td>
<td valign=top><input type=text name=\"numerom\" value=\"\" size=17 maxlength=20 class=\"datosn\"></td>
</tr>
<tr>
<td valign=middle><font class=\"dato\">Cod. Seg.</td>
<td valign=top colspan=2><input type=text name=\"codsegm\" value=\"\" size=4 maxlength=4 class=\"datosn\">
</tr>
<tr>
<td valing=top><font class=\"dato\">Fecha Exp.</td>
<td valing=top>
<select name=mesm class=\"datosn\"><option value=\"\">mes</option>
<option value=\"1\">1</option><option value=\"2\">2</option><option value=\"3\">3</option><option value=\"4\">4</option>
<option value=\"5\">5</option><option value=\"6\">6</option><option value=\"7\">7</option><option value=\"8\">8</option>
<option value=\"9\">9</option><option value=\"10\">10</option><option value=\"11\">11</option><option value=\"12\">12</option>
</select><select name=anom class=\"datosn\"><option value=\"\">año</option>
<option value=\"2000\">2000</option><option value=\"2001\">2001</option><option value=\"2002\">2002</option>
<option value=\"2003\">2003</option><option value=\"2004\">2004</option><option value=\"2005\">2005</option>
<option value=\"2006\">2006</option><option value=\"2007\">2007</option><option value=\"2008\">2008</option>
<option value=\"2009\">2009</option>
</select>
<a href=\"javascript:popUp('tarjetaMWin',false);\" onMouseover=\"arriba('t6');window.status='Cerrar';return true\" onMouseout=\"fuera('t6');return true\"><img name=\"t6\" src=\"/images/home/b_x1.gif\" border=0>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ********************************* FIN DATOS TARJETA *********************************-->
</div>
<div id=\"tarjetaVWin\" style=\"position: absolute; z-index: 20; visibility: hidden; top: 0px; left: 0px;\">
<table background=\"../images/home/fondovisa.gif\" border=0 width=249 height=149 cellpadding=3 cellspacing=0>
<tr><td width=10 rowspan=5>
</td></tr>
<tr><td valign=middle>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td valign=middle><font class=\"dato\">Nombre</td>
<td valign=top><input type=text name=\"nombrev\" value=\"\" size=17 maxlength=30 class=\"datosn\"></td>
</tr>
<tr>
<td colspan=2></font><font class=\"datom\">(como aparece en su tarjeta)
</tr>
<tr>
<td valign=middle><font class=\"dato\">Número</td>
<td valign=top><input type=text name=\"numerov\" value=\"\" size=17 maxlength=20 class=\"datosn\"></td>
</tr>
<tr>
<td valign=middle><font class=\"dato\">Cod. Seg.</td>
<td valign=top colspan=2><input type=text name=\"codsegv\" value=\"\" size=4 maxlength=4 class=\"datosn\">
</tr>
<tr>
<td valing=top><font class=\"dato\">Fecha Exp.</td>
<td valing=top>
<select name=mesv class=\"datosn\"><option value=\"\">mes</option>
<option value=\"1\">1</option><option value=\"2\">2</option><option value=\"3\">3</option><option value=\"4\">4</option>
<option value=\"5\">5</option><option value=\"6\">6</option><option value=\"7\">7</option><option value=\"8\">8</option>
<option value=\"9\">9</option><option value=\"10\">10</option><option value=\"11\">11</option><option value=\"12\">12</option>
</select><select name=anov class=\"datosn\"><option value=\"\">año</option>
<option value=\"2000\">2000</option><option value=\"2001\">2001</option><option value=\"2002\">2002</option>
<option value=\"2003\">2003</option><option value=\"2004\">2004</option><option value=\"2005\">2005</option>
<option value=\"2006\">2006</option><option value=\"2007\">2007</option><option value=\"2008\">2008</option>
<option value=\"2009\">2009</option>
</select>
<a href=\"javascript:popUp('tarjetaVWin',false);\" onMouseover=\"arriba('t7');window.status='Cerrar';return true\" onMouseout=\"fuera('t7');return true\"><img name=\"t7\" src=\"/images/home/b_x1.gif\" border=0>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ********************************* FIN DATOS TARJETA *********************************-->
</div>
</form>
<!-- ********************************* FIN DATOS DEL USUARIO *********************************-->
";
}; /* FIN IF ACCION */
$tablerows = $Elementos + 4;
if ($Elementos == 0) {
$alturalinea = 75;
} else {
$alturalinea = ($Elementos * 50) + 25;
};
echo "
<center><br>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td valign=top bgcolor=ffc410><img src=\"../images/home/puntana.gif\"><img src=\"../images/home/negro1x1.gif\" width=542 height=2 border=0 align=top></td>
</tr>
<tr><td valign=top>
<table border=0 width=550 height=1 cellpadding=0 cellspacing=0>
<tr>
<td width=2 valign=top rowspan=$tablerows><img src=\"../images/home/negro1x1.gif\" width=2 height=$alturalinea></td>
<td bgcolor=ffc410 colspan=6><center><font class=\"titulo\" color=000000>Canasto de Compras</td>
<td width=30 bgcolor=ffc410><p align=right><img src=\"../images/home/negro1x1.gif\" width=1 height=15></td>
<td valing=top bgcolor=ffc410 width=200 colspan=3><p align=right><font class=\"preciog\" color=000000>Total: $$Total </font></td>
</tr>
";
if ($Elementos == 0) {
echo "
<tr>
<td colspan=10 bgcolor=abe0d1>
<font class=\"titulo\" color=000000>
<br>
<center>
El carrito esta Vacío
<br><br>
</td>
</tr>
";
} else {
$a=1;
while($a<=$Elementos) {
if ($bg == "96d5cb") {
$bg = "abe0d1";
} else {
$bg = "96d5cb";
};
$solo = $items[$a];
eval($solo);
$nombrevar = "p" . $pagos;
$p1 = 0;
$p2 = 0;
$p3 = 0;
$p4 = 0;
$p6 = 0;
$p8 = 0;
$p10 = 0;
$p12 = 0;
$p18 = 0;
$p24 = 0;
$$nombrevar = "selected";
if ($pagos == 1) {
$pagospro = 0;
} else {
$pagosfield1 = "CUOTA" . $pagos;
$resultneg = mysql($database,"select * from Negocios where NOMBRE='$neg'");
$pagospro = mysql_result($resultneg, 0, "$pagosfield1");
};
$precioxcant = $cant * ($precio * (1 + $pagospro));
$precioxcant = number_format($precioxcant,2);
$precioxcant = str_replace(".", ",", $precioxcant);
$resultpro = mysql($database,"select * from Productos where ID_PRODUCTO=$prod");
$nombrepro = mysql_result($resultpro, 0, "NOMBRE");
echo "
<!-- ************************** PRODUCTO $a ************************** -->
<form name=\"prod$a\" action=\"/phpfiles/alcarrito.php3\" method=\"post\">
<tr>
<td width=35 valing=top bgcolor=$bg><font class=\"produtit\" color=ffffff>
<input type=hidden name=\"accion\" value=\"actualizar\"><input type=hidden name=\"elem\" value=\"$a\"><input type=hidden name=\"donde\" value=\"$donde\"><input type=hidden name=\"que\" value=\"\">
<center><input type=\"text\" name=\"cantnueva\" value=\"$cant\" size=1 maxlength=\"2\">
</td>
<td width=180 valing=top bgcolor=$bg><font class=\"produtit\" color=ffffff>
<a href=\"/phpfiles/mostrarproducto.php3?producto=$idpro\"><font class=\"produtit\" color=000000>$nombrepro</a></font>
</td>
<td width=30 bgcolor=$bg><center><img src=\"../images/home/negro1x1.gif\" width=1 height=30>
</td>
<td width=400 valing=top bgcolor=$bg><font class=\"descrip\" color=000000>$caractpro</font></td>
<td width=30 bgcolor=$bg><center><img src=\"../images/home/negro1x1.gif\" width=1 height=30></td>
<td width=80 valing=top bgcolor=$bg><p align=right><font class=\"precioc\" color=000000>$$precioxcant</font><br><a href=\"javascript:ventanaNueva('calcuenvio.html','Calculo\sde\sEnvio','scrollbars=no,width=200,height=200')\" onMouseOver=\"window.status='Calcular Gastos de Envio';return true\" onMouseOut=\"return true\" class=\"envio\"> + Envío.</a></td>
<td width=30 bgcolor=$bg><br></td>
<td width=10 valing=middle bgcolor=$bg><center><font class=datom>Pagos:<br><select name=\"pagosnuevo\" class=datoc onChange=\"document.prod$a.que.value = 'pagos'; document.prod$a.submit();\"><option value=\"1\" $p1>1</option><option value=\"2\" $p2>2</option><option value=\"3\" $p3>3</optMion><option value=\"4\" $p4>4</option><option value=\"6\" $p6>6</option><option value=\"8\" $p8>8</option><option value=\"10\" $p10>10</option><option value=\"12\" $p12>12</option><option value=\"18\" $p18>18</option><option value=\"24\" $p24>24</option></select>
</td>
<td width=30 bgcolor=$bg><center><img src=\"../images/home/negro1x1.gif\" width=1 height=30></td>
<td width=80 valing=top bgcolor=$bg>
<a href=\"javascript:document.prod$a.accion.value = 'actualizar'; document.prod$a.submit();\" onMouseOver=\"actualover('proda$a');window.status='Actualizar Cantidad';return true\"
onMouseOut=\"actualout('proda$a');return true\"><img name=\"proda$a\" src=\"../images/home/b_actual1.gif\" border=0 align=bottom></a>
<a href=\"javascript: document.prod$a.accion.value = 'quitar'; document.prod$a.submit();\" onMouseOver=\"quitarover('prodq$a');window.status='Quitar Producto';return true\"
onMouseOut=\"quitarout('prodq$a');return true\"><img name=\"prodq$a\" src=\"../images/home/b_quitar1.gif\" border=0 align=top></a>
</td>
</form>
</tr>
<!-- ************************** FIN PRODUCTO $a ************************** -->
";
$a++;
}; /* FIN WHILE */
}; /* FIN IF == 0 */
$a = $Elementos;
echo "
</table>
</td>
</tr>
</table>
";
if ($donde != "continuar") {
echo "
<br>
<form name=\"continuar\" action=\"/phpfiles/alcarrito.php3\" method=\"post\">
<input type=hidden name=\"donde\" value=\"continuar\">
<center><a href=\"javascript:continua();\" onMouseOver=\"arriba('t2');window.status='Continuar con la Compra';return true\" onMouseOut=\"fuera('t2');return true\"><img name=\"t2\" src=\"../images/home/b_conti1.gif\" align=bottom border=0></a>
</form>
";
};
echo "
</td>
</tr>
<tr>
<td bgcolor=beffff><p align=lefrt><img src=\"../images/home/puntaabi.gif\" align=bottom></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ***************************** TARJETAS DE CREDITO *************************************** -->
<br><br><br>
<table border=0 width=780 cellpadding=0 cellspacing=0>
<tr>
<td><img src=\"../images/home/blanco1x1.gif\" width=104 height=1></td>
<td rowspan=2 valign=top><img src=\"../images/home/blanco1x1.gif\" width=535 height=1></td>
<td><img src=\"../images/home/blanco1x1.gif\" width=141 height=1></td>
</tr>
<tr>
<td bgcolor=009191><img src=\"../images/home/verisign.gif\" align=top></td>
<td bgcolor=009191>
<img src=\"../images/home/tarjetas.gif\" align=middle>
</td>
</tr>
<tr>
<td><img src=\"../images/home/blanco1x1.gif\" width=104 height=1></td>
<td rowspan=2><img src=\"../images/home/blanco1x1.gif\" width=535 height=1></td>
<td><img src=\"../images/home/blanco1x1.gif\" width=141 height=1></td>
</tr>
</table>
<br><br>
</body>
</html>
<script language=\"Javascript1.2\">
<!--
if (NS4) {
gotlayers = (document.layers.length == 1) ? 1 : 0;
}
if (IE4) {
gotlayers = 1;
}
gotlayers = 1;
// -->
</script>
<script language=\"Javascript1.3\">
<!--
gotlayers = 1;
// -->
</script>
";
?>
*************************************************************************
********************** COMPRAR.PHP **************************************
*************************************************************************
<?
$host = "nahuelon";
$user = "nahuelon";
$pass = "nahuelon";
$database = $user;
/* ##################################################################### */
mysql_connect($host,$user,$pass);
$actualusu = mysql($database,"update Usuarios SET PASSWORD=password('$password') where ID_USUARIO='aux'");
$passwordusu = mysql($database,"select * from Usuarios where ID_USUARIO='aux'");
$passusu = mysql_result($passwordusu, 0, "PASSWORD");
$resultusu = mysql($database,"select * from Usuarios where ID_USUARIO='$usuario' AND PASSWORD='$passusu' AND PUEDE=1");
$existe = mysql_num_rows($resultusu);
if ($existe > 0) {
SetCookie("Yacompro", 1, time()+3600);
} else {
echo "<meta http-equiv=\"Refresh\" content=\"20; url=http://192.168.1.1/phpfiles/alcarrito.php3?donde=continuar\">";
};
?>
<head>
<title>TUEMPRESA.com</title>
<style type="text/css">
<!--
.grande { font-family: Arial, Helvetica, sans-serif; font-size: 18px; text-decoration: none;}
.granden { font-family: Arial, Helvetica, sans-serif; font-size: 22px; font-weight: bold; text-decoration: none;}
.texto { font-family: Arial, Helvetica, sans-serif; font-size: 12px; text-decoration: none;}
.texton { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none;}
.dato { font-family: Arial, sans-serif; font-size: 13px; font-weight: bold; text-decoration: none;}
.datosn { font-family: Arial, sans-serif; font-size: 13px; text-decoration: none;}
.datom { font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none;}
.datoc { font-family: Arial, Helvetica, sans-serif; font-size: 9px; text-decoration: none;}
.titulo { font-family: Arial, sans-serif; font-size: 15px; font-weight: bold; text-decoration: none;}
.titulito { font-family: Arial, sans-serif; font-size: 1px; text-decoration: none;}
.produtit { font-family: Arial, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none;}
.envio { font-family: Arial, Helvetica, sans-serif; color: #ff0000; font-size: 10px; font-weight: bold; text-decoration: none;}
.descrip { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; text-decoration: none;}
.precioc { font-family: Arial, Helvetica, sans-serif; font-size: 15.8px; font-weight: bold; text-decoration: none;}
.preciog { font-family: Arial, Helvetica, sans-serif; font-size: 18.8px; font-weight: bold; text-decoration: none;}
-->
</style>
<script languaje = "JavaScript">
<!--
browserVer = parseInt(navigator.appVersion);
// if (browserVer >= 3) version = "n3"
if (browserVer >= 3) version = "n3"
else version = "noScript";
exrubro = "";
if (version == "n3") {
menum0dn = new Image(); menum0dn.src = "../images/home/ofertas2.gif";
menum0up = new Image(); menum0up.src = "../images/home/ofertas1.gif";
menum1dn = new Image(); menum1dn.src = "../images/home/productos2.gif";
menum1up = new Image(); menum1up.src = "../images/home/productos1.gif";
menum2dn = new Image(); menum2dn.src = "../images/home/negocios2.gif";
menum2up = new Image(); menum2up.src = "../images/home/negocios1.gif";
menum3dn = new Image(); menum3dn.src = "../images/home/servicios2.gif";
menum3up = new Image(); menum3up.src = "../images/home/servicios1.gif";
menum4dn = new Image(); menum4dn.src = "../images/home/registrese2.gif";
menum4up = new Image(); menum4up.src = "../images/home/registrese1.gif";
menum5dn = new Image(); menum5dn.src = "../images/home/carrito2.gif";
menum5up = new Image(); menum5up.src = "../images/home/carrito1.gif";
menub0dn = new Image(); menub0dn.src = "../images/rubros/bodega2.gif";
menub0up = new Image(); menub0up.src = "../images/rubros/bodega1.gif";
menub0me = new Image(); menub0me.src = "../images/rubros/bodega0.gif";
menub1dn = new Image(); menub1dn.src = "../images/rubros/champa2.gif";
menub1up = new Image(); menub1up.src = "../images/rubros/champa1.gif";
menub2dn = new Image(); menub2dn.src = "../images/rubros/vinos2.gif";
menub2up = new Image(); menub2up.src = "../images/rubros/vinos1.gif";
menub3dn = new Image(); menub3dn.src = "../images/rubros/otros2.gif";
menub3up = new Image(); menub3up.src = "../images/rubros/otros1.gif";
menuz0dn = new Image(); menuz0dn.src = "../images/rubros/belle2.gif";
menuz0up = new Image(); menuz0up.src = "../images/rubros/belle1.gif";
menuz0me = new Image(); menuz0me.src = "../images/rubros/belle0.gif";
menuz1dn = new Image(); menuz1dn.src = "../images/rubros/cosme2.gif";
menuz1up = new Image(); menuz1up.src = "../images/rubros/cosme1.gif";
menuz2dn = new Image(); menuz2dn.src = "../images/rubros/perfu2.gif";
menuz2up = new Image(); menuz2up.src = "../images/rubros/perfu1.gif";
menuz3dn = new Image(); menuz3dn.src = "../images/rubros/otros2.gif";
menuz3up = new Image(); menuz3up.src = "../images/rubros/otros1.gif";
menue0dn = new Image(); menue0dn.src = "../images/rubros/electro2.gif";
menue0up = new Image(); menue0up.src = "../images/rubros/electro1.gif";
menue0me = new Image(); menue0me.src = "../images/rubros/electro0.gif";
menue1dn = new Image(); menue1dn.src = "../images/rubros/microo2.gif";
menue1up = new Image(); menue1up.src = "../images/rubros/microo1.gif";
menue2dn = new Image(); menue2dn.src = "../images/rubros/minicom2.gif";
menue2up = new Image(); menue2up.src = "../images/rubros/minicom1.gif";
menue3dn = new Image(); menue3dn.src = "../images/rubros/helade2.gif";
menue3up = new Image(); menue3up.src = "../images/rubros/helade1.gif";
menue4dn = new Image(); menue4dn.src = "../images/rubros/televi2.gif";
menue4up = new Image(); menue4up.src = "../images/rubros/televi1.gif";
menue5dn = new Image(); menue5dn.src = "../images/rubros/otros2.gif";
menue5up = new Image(); menue5up.src = "../images/rubros/otros1.gif";
menuh0dn = new Image(); menuh0dn.src = "../images/rubros/hogar2.gif";
menuh0up = new Image(); menuh0up.src = "../images/rubros/hogar1.gif";
menuh0me = new Image(); menuh0me.src = "../images/rubros/hogar0.gif";
menuh1dn = new Image(); menuh1dn.src = "../images/rubros/decora2.gif";
menuh1up = new Image(); menuh1up.src = "../images/rubros/decora1.gif";
menuh2dn = new Image(); menuh2dn.src = "../images/rubros/ferre2.gif";
menuh2up = new Image(); menuh2up.src = "../images/rubros/ferre1.gif";
menuh3dn = new Image(); menuh3dn.src = "../images/rubros/jardi2.gif";
menuh3up = new Image(); menuh3up.src = "../images/rubros/jardi1.gif";
menuh4dn = new Image(); menuh4dn.src = "../images/rubros/otros2.gif";
menuh4up = new Image(); menuh4up.src = "../images/rubros/otros1.gif";
menuu0dn = new Image(); menuu0dn.src = "../images/rubros/musica2.gif";
menuu0up = new Image(); menuu0up.src = "../images/rubros/musica1.gif";
menuu0me = new Image(); menuu0me.src = "../images/rubros/musica0.gif";
menuu1dn = new Image(); menuu1dn.src = "../images/rubros/cds2.gif";
menuu1up = new Image(); menuu1up.src = "../images/rubros/cds1.gif";
menuu2dn = new Image(); menuu2dn.src = "../images/rubros/combos2.gif";
menuu2up = new Image(); menuu2up.src = "../images/rubros/combos1.gif";
menuu3dn = new Image(); menuu3dn.src = "../images/rubros/equipo2.gif";
menuu3up = new Image(); menuu3up.src = "../images/rubros/equipo1.gif";
menuu4dn = new Image(); menuu4dn.src = "../images/rubros/otros2.gif";
menuu4up = new Image(); menuu4up.src = "../images/rubros/otros1.gif";
menur0dn = new Image(); menur0dn.src = "../images/rubros/repues2.gif";
menur0up = new Image(); menur0up.src = "../images/rubros/repues1.gif";
menur0me = new Image(); menur0me.src = "../images/rubros/repues0.gif";
menur1dn = new Image(); menur1dn.src = "../images/rubros/autos2.gif";
menur1up = new Image(); menur1up.src = "../images/rubros/autos1.gif";
menur2dn = new Image(); menur2dn.src = "../images/rubros/maqui2.gif";
menur2up = new Image(); menur2up.src = "../images/rubros/maqui1.gif";
menur3dn = new Image(); menur3dn.src = "../images/rubros/motos2.gif";
menur3up = new Image(); menur3up.src = "../images/rubros/motos1.gif";
menur4dn = new Image(); menur4dn.src = "../images/rubros/otros2.gif";
menur4up = new Image(); menur4up.src = "../images/rubros/otros1.gif";
}
function poner(menu, rubro) {
if (exrubro != rubro) {
if (exrubro != "") fuera(exrubro);
imgMe = eval("menu" + rubro + "me.src");
document [rubro].src = imgMe;
exrubro = rubro;
}
arriba(menu);
}
function sacar(menu) {
fuera(exrubro);
fuera(menu);
exrubro = "";
}
function arriba(menu) {
if (version == "n3") {
imgDn = eval("menu" + menu + "dn.src");
document [menu].src = imgDn;
}
}
function fuera(menu) {
if (version == "n3") {
imgUp = eval("menu" + menu + "up.src");
document [menu].src = imgUp;
}
}
//-->
</script>
</head>
<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0 bgcolor=009191 text=000000 link=000000 vlink=000000>
<table border=0 width=780 cellpadding=0 cellspacing=0>
<tr>
<td width=1% height=10 bgcolor=009191 valign=top><img src="../images/home/logoai.gif">
<font class="descrip"><br></font>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td width=15></td>
<td>
<table border=0 width=14 bordercolor=000000 cellpadding=0 cellspacing=0>
<tr>
<td bgcolor=005252 valign=bottom><p align=left><img src="../images/rubros/parriba.gif"></td>
</tr>
<!-- ************************ BODEGA ****************************** -->
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="arriba('b0');window.status='Bodega';return true"
onMouseOut="fuera('b0');return true"><img name="b0" src="../images/rubros/bodega1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('b1', 'b0');window.status='Champañas';return true"
onMouseOut="sacar('b1');return true"><img name="b1" src="../images/rubros/champa1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('b2', 'b0');window.status='Vinos';return true"
onMouseOut="sacar('b2');return true"><img name="b2" src="../images/rubros/vinos1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('b3', 'b0');window.status='Otras Bebidas';return true"
onMouseOut="sacar('b3');return true"><img name="b3" src="../images/rubros/otros1.gif" width=130 height=14 border=0></a></td>
</tr>
<!-- ************************ FIN BODEGA ****************************** -->
<!-- ************************ BELLEZA ****************************** -->
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="arriba('z0');window.status='Belleza';return true"
onMouseOut="fuera('z0');return true"><img name="z0" src="../images/rubros/belle1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('z1', 'z0');window.status='Cosmeticos';return true"
onMouseOut="sacar('z1');return true"><img name="z1" src="../images/rubros/cosme1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('z2', 'z0');window.status='Perfumes';return true"
onMouseOut="sacar('z2');return true"><img name="z2" src="../images/rubros/perfu1.gif" width=130 height=14 border=0></a></td>
</tr>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('z3', 'z0');window.status='Otros Cosmeticos';return true"
onMouseOut="sacar('z3');return true"><img name="z3" src="../images/rubros/otros1.gif" width=130 height=14 border=0></a></td>
</tr>
<!-- ************************ FIN BELLEZA ****************************** -->
<!-- ************************ ELECTRODOMESTICOS ****************************** -->
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="arriba('e0');window.status='Electrodomésticos';return true"
onMouseOut="fuera('e0');return true"><img name="e0" src="../images/rubros/electro1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('e1', 'e0');window.status='Microondas';return true"
onMouseOut="sacar('e1');return true"><img name="e1" src="../images/rubros/microo1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('e2', 'e0');window.status='Minicomponentes';return true"
onMouseOut="sacar('e2');return true"><img name="e2" src="../images/rubros/minicom1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('e3', 'e0');window.status='Heladeras';return true"
onMouseOut="sacar('e3');return true"><img name="e3" src="../images/rubros/helade1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('e4', 'e0');window.status='Televisores';return true"
onMouseOut="sacar('e4');return true"><img name="e4" src="../images/rubros/televi1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('e5', 'e0');window.status='Otros Electrodomésticos';return true"
onMouseOut="sacar('e5');return true"><img name="e5" src="../images/rubros/otros1.gif" width=130 height=14 border=0></a></td>
</tr>
<!-- ************************ FIN ELECTRODOMESTICOS ****************************** -->
<!-- ************************ HOGAR Y HERRAMIENTAS ****************************** -->
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="arriba('h0');window.status='Hogar y Herramientas';return true"
onMouseOut="fuera('h0');return true"><img name="h0" src="../images/rubros/hogar1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('h1', 'h0');window.status='Decoración';return true"
onMouseOut="sacar('h1');return true"><img name="h1" src="../images/rubros/decora1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('h2', 'h0');window.status='Ferretería';return true"
onMouseOut="sacar('h2');return true"><img name="h2" src="../images/rubros/ferre1.gif" width=130 height=14 border=0></a></td>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('h3', 'h0');window.status='Jardinería';return true"
onMouseOut="sacar('h3');return true"><img name="h3" src="../images/rubros/jardi1.gif" width=130 height=14 border=0></a></td>
</tr>
</tr>
<td valign=bottom><p align=right><a href="/home.htm" onMouseOver="poner('h4', 'h0');window.status='Otros Articulos';return true"
onMouseOut="sacar('h4');return true"><img name="h4"...

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas