EstrellaTecpile / app /compras.php
Estrella Tecpile
se guardo
9a3bf8d
Raw
History Blame Contribute Delete
1.86 kB
<?php include_once('inc/header.php');?>
<?php
echo($_GET["articulo"]);
$imagenArticulo="";
if(strcmp("Zapatos",$_GET["articulo"])==0){
$imagenArticulo= "https://th.bing.com/th/id/OIP.K3Ja3HbzYOsSEsbiyzVuVAHaHa?rs=1&pid=ImgDetMain";
}
else if(strcmp("camisas",$_GET["articulo"])==0){
$imagenArticulo= "https://th.bing.com/th/id/OIP.4wNfsitoETv_6hF4oTHmbQAAAA?rs=1&pid=ImgDetMain";
}
else if(strcmp("calcetines",$_GET["articulo"])==0){
$imagenArticulo= "https://th.bing.com/th/id/R.247b564113d47e494433e9152a80669f?rik=wpE2x5YvhdEj4w&pid=ImgRaw&r=0";
}
else if(strcmp("lentes",$_GET["articulo"])==0){
$imagenArticulo= "https://th.bing.com/th/id/R.65c378ef7e0604d5d2f60e1381c91b3d?rik=hbGMze9tzZTCDQ&pid=ImgRaw&r=0";
}
else if(strcmp("sueter",$_GET["articulo"])==0){
$imagenArticulo= "https://images-na.ssl-images-amazon.com/images/I/81hKNNeMAVL._AC_UL1500_.jpg";
}
else if(strcmp("Gorras",$_GET["articulo"])==0){
$imagenArticulo= "https://th.bing.com/th/id/OIP.MXIsQDAHZIZzFAm238zgOQHaFg?rs=1&pid=ImgDetMain";
}
else{
$imagenArticulo= "https://th.bing.com/th/id/OIP.j7O5Q3AuJ6-Do1jsfG6x9wAAAA?rs=1&pid=ImgDetMain";
}
?>
<br>
<img src="<?php echo $imagenArticulo; ?>">
<br>
Cantidad: <?php echo($_GET["cantidad"]);?>
<br>
Precio: $<?php echo($_GET["precio"]);?>
<br>
Color: <span style="backgroud:<?php echo($_GET["color"]);?>">&nbsp;&nbsp;&nbsp;</span>
<br>
Total: $<?php echo($_GET["precio"]*$_GET["cantidad"]);?>
<?php include_once('inc/footer.php');?>