Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 13, 2018 18:17
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/618def1664f4e3c1c9864449157ae980 to your computer and use it in GitHub Desktop.
Save parzibyte/618def1664f4e3c1c9864449157ae980 to your computer and use it in GitHub Desktop.
<?php
$baseDeDatos = obtenerBaseDeDatos();
# Acceder a la colección contactos
$coleccion = $baseDeDatos->contactos;
$resultado = $coleccion->insertOne([
"un_campo" => "el nuevo valor",
"otro_campo" => "otro nuevo valor",
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment