<?php

# @name: titles.php
# @version: 0.1
# @creation_date: 2021-09-24
# @license: The MIT License <https://opensource.org/licenses/MIT>
# @author: Simon Bowie <ad7588@coventry.ac.uk>
# @purpose: Displays ten random titles

include '../solr.php';

$random_titles = ten_random_titles();

?>

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>

<?php

foreach ($random_titles as $title):

?>

<?
  echo $title;
?>

  <br><br>

  <hr>

<?php
endforeach;
?>

</body>
</html>