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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
935B

  1. <?php
  2. # @name: index.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: Home page for the application
  8. include '../random.php';
  9. include '../ops_api.php';
  10. $random_record = random_record();
  11. ?>
  12. Application ID:
  13. <?php
  14. echo $random_record['application_id'];
  15. ?>
  16. <br><br>
  17. EPO publication:
  18. <a href=<?php echo $random_record['epo_publication_url']; ?>>
  19. <?php
  20. echo $random_record['epo_publication_url'];
  21. ?>
  22. </a>
  23. <br><br>
  24. IPC publication:
  25. <a href=<?php echo $random_record['ipc_publication_url']; ?>>
  26. <?php
  27. echo $random_record['ipc_publication_url'];
  28. ?>
  29. </a>
  30. <br><br>
  31. Title:
  32. <?php
  33. echo $random_record['title'];
  34. ?>
  35. <br><br>
  36. Abstract:
  37. <?php
  38. echo $random_record['abstract'];
  39. ?>
  40. <br><br>
  41. <?php
  42. if (get_publication_details($random_record['doc_ref'])):
  43. ?>
  44. <br><br>
  45. <?php
  46. endif;
  47. ?>