Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. // ***********************************************************
  3. // ********** FORMAT DE DATES *****************************
  4. // ***********************************************************
  5.  
  6. function datetoFR($date){
  7. if(!empty($date)){
  8. list($year, $month, $day) = explode("-", $date);
  9. return $lastmodified = "$day/$month/$year";
  10. }
  11. else{
  12. return $date;
  13. }
  14. }
  15. $sql="select distinct c.* from spip_articles a,cinetic_movie c,lien_film_article l where l.id_article =a.id_article and l.id_film = c.idmovie and a.statut like 'publie' order by c.sortie desc Limit 0,2";
  16. $res=mysql_query($sql);
  17. while($row=mysql_fetch_assoc($res)){
  18. include("squelettes/include/dernieres_critiques.php");
  19. }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement