A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. # @name: titles.php
  3. # @version: 0.1
  4. # @creation_date: 2021-09-24
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Displays ten random titles
  8. include '../solr.php';
  9. $random_titles = ten_random_titles();
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. </head>
  15. <body>
  16. <?php
  17. foreach ($random_titles as $record_array):
  18. ?>
  19. <?
  20. foreach ($record_array as $id => $title):
  21. ?>
  22. <a href="id_search.php?id=<? echo $id; ?>">
  23. <?
  24. echo $title;
  25. ?>
  26. </a>
  27. <?
  28. endforeach;
  29. ?>
  30. <br><br>
  31. <hr>
  32. <?php
  33. endforeach;
  34. ?>
  35. </body>
  36. </html>