Skip to content

Commit

Permalink
Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
noramoor2007 authored Feb 19, 2024
1 parent e348282 commit 5046dbf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion class12.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ <h1>Columbia University (Python) - Class 12</h1>
<li><a href = "C12GroupWork.html">Class 12 Group Work</a></li>
<li><a href = "C12LectureNotesPart1.html">C12 Lecture Notes (Part 1)</a></li>
<li><a href = "C12LectureNotesPart2.html">C12 Lecture Notes (Part 2)</a></li>
<?php $row = 1; if (($handle = fopen("StudentsPerformance.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $num = count($data); echo " ","Record #",$row," "; $row++; for ($recordcount=0; $recordcount < $num; $recordcount++) { echo $data[$recordcount] . " \n"; } } fclose($handle); } ?>
<div id="CSVTable"></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//jquerycsvtotable.googlecode.com/files/jquery.csvToTable.js"></script>

<script>
$(function() {
$('#CSVTable').CSVToTable('StudentsPerformanc.csv');
});
</script>

</body>
</html>

0 comments on commit 5046dbf

Please sign in to comment.