Created
June 23, 2016 07:31
-
-
Save avinashseth/2e8e5c533390c995a751a7672ef43363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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