HTML - nesesito ayuda porfavor

 
Vista:
Imágen de perfil de andres

nesesito ayuda porfavor

Publicado por andres (6 intervenciones) el 05/07/2017 21:32:57
hola amigos. Este es el codigo que quiero ponerle a mi carrito de compra es el metodo de pago paypal ysi hay mas metodos me lo pueden dejar por comentario me ayudaria
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
<form name='formTpv' method='post' action='https://www.sandbox.paypal.com/cgi-bin/webscr' style="border: 1px solid #CECECE;padding-left: 10px;">
    <input name="cmd" type="hidden" value="_cart">
    <input name="upload" type="hidden" value="1">
    <input name="business" type="hidden" value="vender@hotmail.com">
    <input name="shopping_url" type="hidden" value="http://localhost/mitienda/productos.php">
    <input name="currency_code" type="hidden" value="EUR">
    <input name="return" type="hidden" value="http://localhost/mi_carrito/exito.php">
    <input type='hidden' name='cancel_return' value='http://localhost/mi_carrito/errorPaypal.php'>
    <input name="notify_url" type="hidden" value="http://localhost/mi_carrito/paypalipn.php">
    <input name="rm" type="hidden" value="2">
 
    <?php
        $contador = 0;
        foreach($_SESSION['carro'] as $key=>$valor){
                $contador ++;
                $fi=$obj->getProductosPorId($key);
                foreach($fi as $fila){
                $id=$fila['id'];
                $producto=$fila['producto'];
                $precio=$fila['precio'];
        }
   ?>
 
  <input name="item_number_<?php echo $contador; ?>" type="hidden" value="<?php echo $id; ?>">
  <input name="item_name_<?php echo $contador; ?>" type="hidden" value="<?php echo $producto; ?>">
  <input name="amount_<?php echo $contador; ?>" type="hidden" value="<?php echo $precio; ?>">
  <input name="quantity_<?php echo $contador; ?>" type="hidden" value="<?php echo $valor; ?>">
 
  <?php
      }
  ?>
  <input type="submit" value="PayPal SandBox">-
</form>


pero quisiera ponerle ese codigo a esta pagina y no puedo quien me ayuda
descargar proyecto: https://github.com/Carlos007007/OnlineStore

4
Help pliz
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder