2006-08-22 18:36:34 +00:00
|
|
|
As with records the collection can be saved by calling the save method.
|
2007-04-12 20:52:30 +00:00
|
|
|
|
|
|
|
<code type="php">
|
|
|
|
$users = $table->findAll();
|
|
|
|
|
|
|
|
$users[0]->name = "Jack Daniels";
|
|
|
|
|
|
|
|
$users[1]->name = "John Locke";
|
|
|
|
|
|
|
|
$users->save();
|
|
|
|
</code>
|