Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 27, 2019 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/45b8bbdc9db369aa042e0403c565eee4 to your computer and use it in GitHub Desktop.
Save parzibyte/45b8bbdc9db369aa042e0403c565eee4 to your computer and use it in GitHub Desktop.
<?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