Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <table>
- <?php
- $sql = "Select * from matchs order by date DESC LIMIT 0,15";
- $rs_matchs = mysql_myquery($sql);
- while ($matchs = mysql_fetch_assoc($rs_matchs))
- {
- $team1 = $matchs["team1"];
- $team2 = $matchs["team2"];
- $date = $matchs["date"];
- $score1 = $matchs["score1"];
- $score2 = $matchs["score2"];
- $status = $matchs["status"];
- $url = $matchs["url"];
- if ( $status == "Pas démarré" )
- echo "<tr>
- <td height=25px align=left width=33% class=scoreright>$team1
- <td height=25px align=center width=34% class=score colspan=3>" . date("H:i", strtotime($date)) ."
- <td height=25px align=right width=33% class=scoreleft>$team2";
- elseif ( $status == "Live !" )
- echo "<tr>
- <td height=25px align=left width=33% class=scoreright>$team1
- <td height=25px align=center width=34% class=score colspan=3>Live !
- <td height=25px align=right width=33% class=scoreleft>$team2";
- elseif ( $status == "Fini" )
- echo "<tr>
- <td height=25px align=left width=38% class=scoreright>$team1
- <td height=25px align=center width=11% class=score>$score1
- <td height=25px align=center width=1% class=score>:
- <td height=25px align=center width=11% class=score>$score2
- <td height=25px align=right width=38% class=scoreleft>$team2";
- }
- function mysql_myquery($sql)
- {
- $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>");
- 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>");
- return $résultat;
- }
- ?>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement