Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <table>
  2. <?php
  3.  
  4. $sql = "Select * from matchs order by date DESC LIMIT 0,15";
  5. $rs_matchs = mysql_myquery($sql);
  6. while ($matchs = mysql_fetch_assoc($rs_matchs))
  7. {
  8. $team1 = $matchs["team1"];
  9. $team2 = $matchs["team2"];
  10. $date = $matchs["date"];
  11. $score1 = $matchs["score1"];
  12. $score2 = $matchs["score2"];
  13. $status = $matchs["status"];
  14. $url = $matchs["url"];
  15.  
  16.  
  17. if ( $status == "Pas démarré" )
  18. echo "<tr>
  19. <td height=25px align=left width=33% class=scoreright>$team1
  20. <td height=25px align=center width=34% class=score colspan=3>" . date("H:i", strtotime($date)) ."
  21. <td height=25px align=right width=33% class=scoreleft>$team2";
  22.  
  23. elseif ( $status == "Live !" )
  24. echo "<tr>
  25. <td height=25px align=left width=33% class=scoreright>$team1
  26. <td height=25px align=center width=34% class=score colspan=3>Live !
  27. <td height=25px align=right width=33% class=scoreleft>$team2";
  28.  
  29. elseif ( $status == "Fini" )
  30. echo "<tr>
  31. <td height=25px align=left width=38% class=scoreright>$team1
  32. <td height=25px align=center width=11% class=score>$score1
  33. <td height=25px align=center width=1% class=score>:
  34. <td height=25px align=center width=11% class=score>$score2
  35. <td height=25px align=right width=38% class=scoreleft>$team2";
  36. }
  37.  
  38. function mysql_myquery($sql)
  39. {
  40. $résultat = mysql_query($sql) or die("Erreur dans la requête :<br><b>$sql</b><br>L'erreur renvoyée par MySQL est : <br><b>".mysql_error()."</b>");
  41. if (!$résultat) die("Erreur dans la requête :<br><b>$sql</b><br>L'erreur renvoyée par MySQL est : <br><b>".mysql_error()."</b>");
  42. return $résultat;
  43. }
  44.  
  45. ?>
  46. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement