Re: La suite de mot
Publié : 30 oct. 2013, 11:17
Spatio-temporel -> Galaxie
Forum du serveur HelloMinecraft
https://postmortem.hellominecraft.fr/forum/
https://postmortem.hellominecraft.fr/forum/viewtopic.php?t=213
Code : Tout sélectionner
<?php
// Connexion à la base de données
try
{
$bdd = new PDO('mysql:host=localhost;dbname=test', 'root', '');
}
catch(Exception $e)
{
die('Erreur : '.$e->getMessage());
}
// On récupère les 5 derniers billets
$req = $bdd->query('SELECT id, titre, contenu, DATE_FORMAT(date_creation, \'%d/%m/%Y à %Hh%imin%ss\') AS date_creation_fr FROM billets ORDER BY date_creation DESC LIMIT 0, 5');
while ($donnees = $req->fetch())
{
BLA BLA BLA !!