Created
March 29, 2017 11:09
-
-
Save alvar0hurtad0/f29de622962d00109444ed36803e7c97 to your computer and use it in GitHub Desktop.
This file contains 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
$fields = array( | |
'item_id', | |
'revision_id', | |
// Dodos los campos. | |
); | |
$values = array( | |
'1', | |
'1', | |
// Todos los campos. | |
); | |
$query = db_insert('tabla') | |
->fields($fields, $values) | |
->execute(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment