arrayQuery($query, SQLITE_ASSOC);
$arr = $results[0];
echo "Recherche du billet contenant les mots clés '$word'...
\n";
if($results)
{
$title = $arr['post_title'];
$content = $arr['post_content'];
$user = $arr['post_author'];
$date = $arr['post_date'];
$url = $arr['guid'];
echo "$title
\n";
echo "by #$user Date: $date
\n";
echo "
$content
\n"; echo "