File size: 1,858 Bytes
d84f76f
 
e0dac3b
5faf7e6
 
 
61f628f
5faf7e6
 
61f628f
5faf7e6
 
1a2ce41
 
 
d48cebc
 
 
 
 
 
 
 
 
5faf7e6
 
 
d84f76f
9a3bf8d
5faf7e6
dc6ab3b
278bac7
dc6ab3b
9a3bf8d
ba4507d
9a3bf8d
ba4507d
9a3bf8d
dc6ab3b
d84f76f
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
<?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');?>