Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 22, 2019 12:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4663d47d962e3ebb23f2fdc1675f91b9 to your computer and use it in GitHub Desktop.
Save parzibyte/4663d47d962e3ebb23f2fdc1675f91b9 to your computer and use it in GitHub Desktop.
<?php
$sentencia = $base_de_datos->prepare("insert into cortes(idUsuario, fecha, total) values(?,?,?)");
$sentencia->execute([$idUsuario, $fechaCorte, $total]);
# Aquí el último ID:
$id = $base_de_datos->lastInsertId();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment