Show HN: Simpler Database Interactions in PHP
1–2 of 2 posts
Re: Show HN: Simpler Database Interactions in PHP
#2I find it harder to read then plain SQL.
You do it like this:
$base->find('user')->whereEqual('is_verified', 1)->orderDesc('id')->read();
I do it like this:
$myDb->find('SELECT * FROM user WHERE is_verified=1 ORDER BY id DESC');