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
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

42 Zeilen
476B

  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 $title):
  18. ?>
  19. <?
  20. echo $title;
  21. ?>
  22. <br><br>
  23. <hr>
  24. <?php
  25. endforeach;
  26. ?>
  27. </body>
  28. </html>