File path: dist/twist/Core/Models/Database/ProtocolJSON.model.php
Namespace: Twist\Core\Models\Database
updateRow
— Update a record in a table
Name | Description |
---|---|
$strTable | n/a |
[$arrData = array()] | n/a |
[$arrWhere = array()] | n/a |
[$arrLimit = array()] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strTable = 'foo';
$arrData = array();
$arrWhere = array();
$arrLimit = array();
//Call the function updateRow with the example vars
$resProtocolJSON = new \Twist\Core\Models\Database\ProtocolJSON();
$resProtocolJSON -> updateRow($strTable, $arrData, $arrWhere, $arrLimit);