8 lines
123 B
PHP
8 lines
123 B
PHP
<?php
|
|
// delete all users with name 'John'
|
|
|
|
$users = $table->findByDql("name LIKE '%John%'");
|
|
|
|
$users->delete();
|
|
?>
|