<html>
<head>
<title>a</title>
</head>
<body>
<?php
$elec= fopen($_SERVER['DOCUMENT_ROOT']."/curso/archivos/eleccionmod.txt", "r");
$numero_elec = count($elec); // echo $numero_elec;
if ($numero_elec == 0)
{
echo "<p><strong>No hay elecciones pendientes
Inténtalo más tarde.</strong></p>";
}
echo "<table border=1>";
echo "<tr><th>Fecha </th>
<th>Nombre</th>
<th>Marca</th>
<th>Modelos</th>
<tr>";
for ($i=0; $i<$numero_de_elec; $i++)
{
$linea = explode( "t", $elec[$i] );
echo "<tr>
<td>".$linea[0]."</td>
<td align = right>".$linea[1]."</td>
<td align = right>".$linea[2]."</td>
<td align = right>".$linea[3]."</td>
</tr>";
}
echo "</table>";
?>
</body>
</html>