Source of file tableTemplate.php

Size: 0,508 Bytes - Last Modified: 2017-03-18T21:34:02+01:00

C:/Users/Mike/Desktop/NewsScraper/Article_Analytics/tableTemplate.php

123456789101112131415161718192021222324
<?php
	function makeTable($p){
	?>
		<table class="table table-responsive analytics-table">
			<thead>
			<tr>
				<th>Headline</th>
				<th>% Original Reporting</th>
				<th>Links in Article</th>
				<th>Links per 1000 Words</th>
				<th>Link Quality</th>
				<th>Sources in Article</th>
				<th>Sources per 1000 Words</th>
				<th>Word Count</th>
				<th>Sentence Count</th>
			</tr>
			</thead>
			<tbody>
			<?php
			analyticsByHeadline($p);
			?>
			</tbody>
		</table>
	<?php }?>