Nieuw lid |
|
Bij deze code zou ik nu graag een een stukje bijvoegen, maar weet niet goed hoe
dus een txt-file wordt uitgelezen in een php-file.
nu zou ik wel graag zien dat er om de andere regel een ander achtergrondkleur is.
vb
regel 1 : achtergrond grijs
regel 2 : achtergrond wit
regel 3 : achtergrond grijs
regel 4 : achtergrond wit
...
Iemand enig idee ?
<?php
$aFile = file('txt/triathlon_wk_ld_w.txt');
$e = 'gif';
?>
<html>
<head>
<title>Triathlon WK Long Distance - W</title>
<style>
td {
font-family : verdana;
font-size : 12px;
}
</style>
<body>
<?php
echo '<table width="600" align="center" cellpadding="0" cellspacing="0" border="0">';
for($i=0;$i<count($aFile);$i++){
$aFile[$i] = explode('|', $aFile[$i]);
echo '<tr>';
echo '<td width="60" align="left">' .$aFile[$i][0] . '</td>
<td width="180" align="left"><font color="#FF0000">' .$aFile[$i][1] . ' <img src="vlag/'.$aFile[$i][2].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][2].'"></font></td>
<td width="180">' .$aFile[$i][3] . ' <img src="vlag/'.$aFile[$i][4].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][4].'"></td>
<td width="180"><font color="#cccccc">' .$aFile[$i][5] . ' <img src="vlag/'.$aFile[$i][6].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][6].'"></font></td>';
echo '</tr>';
}
echo '</table>';
?>
</body>
</html>
<?php $aFile = file('txt/triathlon_wk_ld_w.txt'); $e = 'gif'; ?> <html> <head> <title>Triathlon WK Long Distance - W</title> <style> td { font-family : verdana; font-size : 12px; } </style> <body> <?php echo '<table width="600" align="center" cellpadding="0" cellspacing="0" border="0">'; for($i=0;$i<count($aFile);$i++){ $aFile[$i] = explode('|', $aFile[$i]); echo '<td width="60" align="left">' .$aFile[$i][0] . '</td> <td width="180" align="left"><font color="#FF0000">' .$aFile[$i][1] . ' <img src="vlag/'.$aFile[$i][2].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][2].'"></font></td> <td width="180">' .$aFile[$i][3] . ' <img src="vlag/'.$aFile[$i][4].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][4].'"></td> <td width="180"><font color="#cccccc">' .$aFile[$i][5] . ' <img src="vlag/'.$aFile[$i][6].'.'.$e.'" width="14" height="10" alt="'.$aFile[$i][6].'"></font></td>'; } ?> </body> </html>
Reeds hartelijk dank bij voorbaat,
J.
|