GitLab now enforces expiry dates on tokens that originally had no set expiration date. Those tokens were given an expiration date of one year later. Please review your personal access tokens, project access tokens, and group access tokens to ensure you are aware of upcoming expirations. Administrators of GitLab can find more information on how to identify and mitigate interruption in our documentation.
$sql="SELECT Album.title, Album.price, Artist.first_name, Artist.last_name, Genre.name AS genre, (SELECT COUNT(*) FROM Track WHERE Album.upc=Track.album_upc) AS num_tracks FROM Album
INNER JOIN Artist
ON Album.artist_id=Artist.id
// define the SQL query to run (from lab 3 queries.sql!)
// use column aliases if necessary to make referencing fields in result-set easier
$sql="SELECT Album.title, Album.price, Artist.first_name, Artist.last_name, Genre.name AS genre, (SELECT COUNT(*) FROM Track WHERE Album.upc=Track.album_upc) AS num_tracks
FROM Album
INNER JOIN Artist
ON Album.artist_id=Artist.id
INNER JOIN Genre
ON Album.genre_id=Genre.id
ORDER BY title ASC";
ON Album.genre_id=Genre.id
ORDER BY title ASC;";
// query the database
$result=mysqli_query($link,$sql);
// check query returned a result
if($result===false){
echomysqli_error($link);
// define a variable for HTML content string
$content="<h1>Albums</h1>";
// get number of rows in result-set
$row_cnt=mysqli_num_rows($result);
// check if there are rows to display...
if($row_cnt==0){
// if not, output a suitable message
$content.="<p>There are no albums in the databased!</p>";
}else{
// $row_cnt = mysqli_num_rows($result);
// echo $row_cnt
// fetch associative array */
// otherwise, update the HTML in $content
$content.="<table cellpadding='4' border='1'>
<thead align='left'>
<tr>
<th>Album name</th>
<th>Artist name</th>
<th>Price</th>
<th>Genre</th>
<th>Number of tracks</th>
</tr>
</thead>
<tbody>";
// while there are rows, fetch each row as an associative array
while($row=mysqli_fetch_assoc($result)){
echo($row['title']." (".$row['genre'].") ");
// append the content with more HTML containing row data