File path: dist/twist/Core/Models/Database/ProtocolJSON.model.php
Namespace: Twist\Core\Models\Database
deleteRow
— Delete a record from a table
Name | Description |
---|---|
$strTable | 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';
$arrWhere = array();
$arrLimit = array();
//Call the function deleteRow with the example vars
$resProtocolJSON = new \Twist\Core\Models\Database\ProtocolJSON();
$resProtocolJSON -> deleteRow($strTable, $arrWhere, $arrLimit);