Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 27, 2019 15:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<?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