if (!$CONFIGURACIONPHP) include("php/configuracion.php"); if (!$POSTGRESPHP) include ("php/postgres.php"); if (!$CLASEGENERICAPHP) include ("php/clase_generica.php"); if (!$PEDIDOSPHP) include ("php/pedidos.php"); //Nos devuelve el valor del oid. $oid_pedido=pedido_compruebacarrito($$nombrecarrito,$nombrecarrito,0,&$error); ?>
Las referencias
de nuestros artículos llevan delante del número una serie
de letras. |
|
|
||||||
|
|||||||
Items Carro:
/*carrito*/ include ("php/num_carrito.php") ?>
|
|||||||
|
//esto no se pone en marcha hasta probarlo abajo
//seleccionamos los valores constantes
$error="";
$select2=postgres_select("select oid,* from constantes",FALSE,&$error);
$iva=pg_result($select2,0,"iva");
$moneda=pg_result($select2,0,"moneda");
//seleccionamos las ofertas
$err="";
$select=postgres_select("select distinct OF.*, PR.preciopvp from ofertas OF, productos PR where OF.producto=PR.codigo",FALSE,&$err);
$num=pg_numrows($select);
for ($i=0;$i<$num;$i++){
$titulo=pg_result($select,$i,"nombre");
$imagen=pg_result($select,$i,"imagen");
$texto=pg_result($select,$i,"texto");
$producto=pg_result($select,$i,"producto");
$precio=pg_result($select,$i,"preciopvp");
if (($moneda=="ptas") or ($moneda=="ptasyeuros"))
$preciopts=number_format(round($precio*(100+$iva)/100),0,"",".") . " ptas";
else
$preciopts=number_format($precio*(100+$iva)/100,2,",",".") . " euros";
?>
} // fin del for ?>
|
| ||
|