Skip to content

Instantly share code, notes, and snippets.

@Scriptor
Last active December 26, 2015 13:59
Show Gist options
  • Save Scriptor/7162230 to your computer and use it in GitHub Desktop.
Save Scriptor/7162230 to your computer and use it in GitHub Desktop.
<?php
foreach($rows as $row) {
$name = $row['name'];
$date = $row['date'];
include('tr_partial.php')
}
<tr>
<td><?php echo $name; ?></td>
<td><?php echo $date; ?></td>
</tr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment