Skip to content

Commit

Permalink
Added some emphasis to the title
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin McDonagh committed Sep 5, 2010
1 parent 02fb0ef commit e2671f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/mashbox1.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
$dbh = new PDO('sqlite:mashbox2.sqlite');
foreach($dbh->query('SELECT * FROM tracks') as $row){
echo ("<tr>\n");
echo ("<td><span>" . $row['title'] . "</span> <b>+</b> <span>" . $row['artist'] . "</span></td>\n");
echo ("<td><span><strong>" . $row['title'] . "</strong> by " . $row['artist'] . "</span></td>\n");
echo ("<td><span>". $row['addedby1'] . "</span> <b>&amp;</b> <span>". $row['addedby2'] . "</span></td>\n");
echo ("<tr>\n");
}
Expand Down

0 comments on commit e2671f9

Please sign in to comment.