List of finished builds:
";
echo "
| ID | Timestamp add | spec file | release tag | In progress |
|---|
";
$counter=0;
foreach ($rs->data as $row) {
$counter = $counter + 1;
echo "
";
echo "| " . $row[0] . " | ";
echo "" . $row[1] . " | ";
echo "" . $row[2] . " | ";
echo "" . $row[3] . " | ";
echo "" . $row[4] . " | ";
echo "
";
}
echo "";
echo "
Number of finished builds: " . $counter . "
";
dbx_close($dbh);
?>