Notice something incorrect or missing? Let us know!
\n\n
“;
echo “
“;
echo “Displaying “;
echo $numRows . ‘ results
|
|
‘;
echo “
Category
Full Length LP = LP
Various Artists = VA
Original Soundtrack = OS
Single/EP = EP
Digital Video Disc = DVD
Box Set = BX
|
“;
// Display table headings
echo “\n\n
artist
|
album
|
release date
|
\n\n”;
while ($myrow = mysql_fetch_row($result)) {
//album title
$text1 = $myrow[2];
$trimmed1 = ereg_replace(” “, “+”, $text1);
//artist name
$text2 = $myrow[5];
$text3 = $myrow[6];
$textall = “{$text2} {$text3}”;
$trimmed2 = ereg_replace(” “, “+”, $textall);
printf(“
|
%s (%s, %s)
|
%s |
\n\n”,
$myrow[8], $myrow[5], $myrow[6], $myrow[2], $myrow[0], $myrow[3], $myrow[7], $myrow[4]);
}
?>
(Visited 109 times, 1 visits today)