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 713adc8 commit 47b4de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h2>Average Margin of Victory</h2>
<td>Header 2</td>
</tr>
<?php
$fp = fopen ( "results/full_results.csv" , "r" );
$fp = fopen ( "/results/full_results.csv" , "r" );
while (( $data = fgetcsv ( $fp , 1000 , "," )) !== FALSE ) {
$i = 0;
echo "<tr>";
Expand Down

0 comments on commit 47b4de9

Please sign in to comment.