Commit 006420a68f415fa8fe3cb01922a55273fb0c6d06
1 parent
56c75c13
Added date to news
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
news.php
... | ... | @@ -14,7 +14,7 @@ if(!mysql_select_db('crep', $link)){ |
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -$requete = "select news.pk as pk, title, content, users.realname as userName from news, users where news.fk_author=users.pk;"; | |
17 | +$requete = "select news.pk as pk, created, title, content, users.realname as userName from news, users where news.fk_author=users.pk;"; | |
18 | 18 | $resultat = mysql_query($requete); |
19 | 19 | |
20 | 20 | //Pour debugger |
... | ... | @@ -36,7 +36,7 @@ while ($row = mysql_fetch_assoc($resultat)) { |
36 | 36 | echo '<p>'.$row['content'].'</p>'; |
37 | 37 | echo '</div>'; |
38 | 38 | echo '<div class="panel-footer">'; |
39 | - echo '<p>'.$row['userName'].'</p>'; | |
39 | + echo '<p>'.$row['userName'].', le '.$row['created'].'</p>'; | |
40 | 40 | echo '</div></div>'; |
41 | 41 | } |
42 | 42 | ... | ... |