I am brand new to the Fat-Free-Framework F3 for PHP
I am trying to build a blog
I have a simple query
'SELECT * FROM blogs ORDER BY created DESC LIMIT 5'
I want to build this query using the Axon ORM that is built in to the F3 framework
In my thinking I want to try this:
$blogs = new Axon('blogs');
$blogs->load(array('limit'=>5, 'order by'=>'created', 'order'=>'DESC'));
Is this the correct way?
Does anyone know of any good Axon documentation?
Thanks