Skip to content

Commit

Permalink
add results table to html
Browse files Browse the repository at this point in the history
  • Loading branch information
wmentrekin committed Oct 27, 2020
1 parent 47b4de9 commit 8ae993d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ <h2>Average Margin of Victory</h2>

<table>
<tr>
<td>Header 1</td>
<td>Header 2</td>
<td>State</td>
<td>Projected Winner</td>
<td>Trump Projected Vote</td>
<td>Biden Projected Vote</td>
<td>Projected Margin</td>
<td>Trump Chance</td>
<td>Biden Chance</td>
</tr>
<?php
$fp = fopen ( "/results/full_results.csv" , "r" );
Expand All @@ -65,7 +70,7 @@ <h2>Average Margin of Victory</h2>
echo "/<tr>";
}
fclose ( $fp );
?>
?>
</table>

</body>
Expand Down

0 comments on commit 8ae993d

Please sign in to comment.