Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2019 16:43
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/ef959fca407d7d80599941d9cdc5554b to your computer and use it in GitHub Desktop.
Save parzibyte/ef959fca407d7d80599941d9cdc5554b to your computer and use it in GitHub Desktop.
<?php
/*
Suponiendo que usamos PHP
*/
$sentencia = "INSERT INTO Usuarios(nombre, fecha_registro) VALUES (?,?)";
$hoy = date("Y-m-d H:i:s");
$sentencia->execute([$nombre, $hoy]);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment