mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-23 11:22:12 +00:00
11 lines
252 B
PHP
Executable File
11 lines
252 B
PHP
Executable File
<?php
|
|
include_once "functions.php";
|
|
$pdo = connect();
|
|
$query = $pdo->query("SELECT title, categorie, dt as date, short as content
|
|
FROM posts
|
|
ORDER BY date DESC
|
|
LIMIT 6");
|
|
while($row = $query->fetch()) {
|
|
echo $row["title"];
|
|
}
|
|
// var_dump(connect());
|