- <?php
-
-
-
-
-
-
-
-
- include '../solr.php';
-
- $random_titles = ten_random_titles();
-
- ?>
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- </head>
- <body>
-
- <?php
-
- foreach ($random_titles as $record_array):
-
- ?>
-
- <?
- foreach ($record_array as $id => $title):
- ?>
- <a href="id_search.php?id=<? echo $id; ?>">
- <?
- echo $title;
- ?>
- </a>
- <?
- endforeach;
- ?>
-
- <br><br>
-
- <hr>
-
- <?php
- endforeach;
- ?>
-
- </body>
- </html>
|