Skip to content

Instantly share code, notes, and snippets.

@avinashseth
Created June 23, 2016 07:31
Show Gist options
  • Save avinashseth/2e8e5c533390c995a751a7672ef43363 to your computer and use it in GitHub Desktop.
Save avinashseth/2e8e5c533390c995a751a7672ef43363 to your computer and use it in GitHub Desktop.
<?php
$database->insert("account", [
"user_name" => "foo",
"email" => "[email protected]"
]);
/* note */
/*
* account is the table name
* user_name is the column name and value is foo
* email is the column name and value is [email protected]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment