This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cliente = "Luis Cabrera Benito"; | |
$remitente = "Luis Cabrera Benito"; | |
$web = "https://parzibyte.me/blog"; | |
$mensajePie = "Gracias por su compra"; | |
$numero = 1; | |
$descuento = 0; | |
$porcentajeImpuestos = 16; | |
$productos = [ | |
[ | |
"precio" => 50, | |
"descripcion" => "Procesador AMD Ryzen 7", | |
"cantidad" => 1, | |
], | |
[ | |
"precio" => 800, | |
"descripcion" => "Tarjeta de vídeo", | |
"cantidad" => 2, | |
], | |
]; | |
$fecha = date("Y-m-d"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment