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.

83 line
784B

  1. <?php
  2. include '../random.php';
  3. include '../ops_api.php';
  4. $random_record = random_record();
  5. ?>
  6. Document reference no.:
  7. <?php
  8. echo $random_record['doc_ref'];
  9. ?>
  10. <br><br>
  11. <?php
  12. if (get_publication_details($random_record['doc_ref'])):
  13. ?>
  14. <br><br>
  15. <?php
  16. endif;
  17. ?>
  18. Application ID:
  19. <?php
  20. echo $random_record['application_id'];
  21. ?>
  22. <br><br>
  23. EPO publication:
  24. <a href=<?php echo $random_record['epo_publication_url']; ?>>
  25. <?php
  26. echo $random_record['epo_publication_url'];
  27. ?>
  28. </a>
  29. <br><br>
  30. IPC publication:
  31. <a href=<?php echo $random_record['ipc_publication_url']; ?>>
  32. <?php
  33. echo $random_record['ipc_publication_url'];
  34. ?>
  35. </a>
  36. <br><br>
  37. Title:
  38. <?php
  39. echo $random_record['title'];
  40. ?>
  41. <br><br>
  42. Abstract:
  43. <?php
  44. echo $random_record['abstract'];
  45. ?>