hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
home
/
distin10n
/
public_html
/
Upload FileeE
HOME
<?php require 'vendor/autoload.php'; MercadoPago\SDK::setAccessToken('TEST-2453032921956408-032015-7d176618f1221bd16b1ed5321eb19bf5-113801110'); $preference = new MercadoPago\Preference(); $preference->back_urls=array("success"=>"payexito.php","failure"=>"fallido","pending"=>"https://distincionenregalos.com.mx/?p=payexito"); $titulo = "articulo en venta"; $item = new MercadoPago\Item(); $item->id = 1; $item->title = $titulo; $item->description = "descripcion"; $item->quantity = 1; $item->unit_price = 600; $item->currency_id = 'MXN'; $item->picture_url = 'https://distincionenregalos.com.mx/articulos/XMFE-17027-21G_s.jpg'; /*$item2 = new MercadoPago\Item(); $item2->id = 2; $item2->title = "item 2"; $item2->description = "desc2"; $item2->quantity = 11; $item2->unit_price = 100; $item2->currency_id = 'MXN'; $item2->picture_url = 'https://distincionenregalos.com.mx/articulos/SX021-8226CHAM_s.jpg';*/ $preference->items = array($item/*,$item2*/); $preference->save(); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Prueba pago</title> </head> <body> <script src="https://sdk.mercadopago.com/js/v2"></script> <script> const mp = new MercadoPago('TEST-dada3d77-ec40-43ff-bbb1-340eac24405d',{ locale: 'es-MX' }); const checkout = mp.checkout({ preference: { id: '<?php echo $preference->id; ?>' }, render: { container: '.btnPagar', label: 'Pagar ahora', } }); </script> <a class="btnPagar" href="<?php echo $preference->init_point; ?>"></a> </body> </html>