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