1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <p>
<?php echo stripslashes($data['categorie']); //on recupère catégorie ?>
<strong><em>, le <?php echo date('d/m/Y à H\hi', strtotime($data['date'])); //on recupère la date ?></em></strong> <BR>
<a href="news.html?id=<?php echo $data['id']; ?>"><?php echo stripslashes($data['titre']); //on recupère titre ?> </a>
<br><br><?php
$url = $data['url'];
{
$introduction = nl2br(stripslashes($data['introduction']));
echo $introduction;
}
?>
<img alt="image de news" style="float: left;" src="<?php echo $_POST['url'] ?>" width="100" height="50" />
</p> |