Skip to content
stanistan edited this page May 24, 2011 · 2 revisions

Inserting records.

Example:

$fields = array(
    'name' => 'U2',
    'bio' => "This is U2's bio"
);
$rs = aql::insert('artist', $fields);

Returns

A records set equivalent to an aql::select of the data that was inserted.

Clone this wiki locally