File size: 1,705 Bytes
b736226 1a180d9 c293b27 c741c73 f0964ea b736226 c741c73 c293b27 c741c73 b736226 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <?php include("inc/header.php");?>
<?php
echo($_GET["articulo"]);
$imagenArticulo = "";
if(strcmp("Zapatos",$_GET["articulo"])==0){
$imagenArticulo = "https://i.pinimg.com/originals/2a/f8/54/2af85472dfc431b481d85536cc034119.jpg";
}
else if(strcmp("Camisas",$_GET["articulo"])==0){
$imagenArticulo = "https://i.pinimg.com/originals/c9/73/c5/c973c55c3f4a5b2dc34c2b1369fddc0f.jpg";
}
else if(strcmp("Calcetines",$_GET["articulo"])==0){
$imagenArticulo = "https://www.podoactiva.com/wp-content/uploads/imagenes/calcetines_1.jpeg";
}
else if(strcmp("Lentes",$_GET["articulo"])==0){
$imagenArticulo = "https://th.bing.com/th/id/OIP.k85uPL-tS7KlVfvIFl6P7QHaHX?rs=1&pid=ImgDetMain";
}
else if(strcmp("Sueter",$_GET["articulo"])==0){
$imagenArticulo = "https://media.gq.com.mx/photos/5fc831672992af067131d440/master/w_1600%2Cc_limit/Su%25C3%25A9ter%2520tejido%2520Massimo%2520Dutti.jpg";
}
else if(strcmp("Gorras",$_GET["articulo"])==0){
$imagenArticulo = "https://http2.mlstatic.com/D_NQ_NP_762934-MLM72111006498_102023-O.webp";
}
else{
$imagenArticulo = "https://cdn-icons-png.flaticon.com/512/16/16410.png";
}
?>
<br>
<img src="<?php echo $imagenArticulo; ?>">
<br>
Cantidad: <?php echo($_GET["cantidad"]);?>
<br>
Precio: $<?php echo($_GET["precio"]);?>
<br>
Color: <span style="background:<?php echo($_GET["color"]);?>"> </span>
<br>
Total: $<?php echo($_GET["precio"]*$_GET["cantidad"]);?>
<?php include("inc/footer.php");?> |