Skip to content

Instantly share code, notes, and snippets.

@Brobin
Created June 6, 2014 02:58
Show Gist options
  • Save Brobin/81c75aaed63ce21f7550 to your computer and use it in GitHub Desktop.
Save Brobin/81c75aaed63ce21f7550 to your computer and use it in GitHub Desktop.
Medoo PHP example
<?php
require "medoo.min.php";
$db = new medoo();
$posts = $db->select("posts", array("title", "excerpt", "id"), array("ORDER"=>"id DESC", "LIMIT" => 10));
foreach($posts as &$post) {
echo "<h1>".$post["title"]."</h1><br>";
echo "<p>".$post["excerpt"]."</p><br>";
}
@crecontr
Copy link

Thanks a lot for this example!!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment