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 символів.

3 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. # @name: search.php
  3. # @version: 0.1
  4. # @creation_date: 2021-09-30
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Searches the Solr index
  8. include '../solr.php';
  9. ?>
  10. <!DOCTYPE html>
  11. <html lang="en">
  12. <head>
  13. <meta charset="utf-8">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <link rel="stylesheet" type="text/css" href="css/style.css">
  16. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  17. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  18. </head>
  19. <body>
  20. <div class="container">
  21. <?php
  22. $search_results = solr_search($_POST["search"], $_POST["searchopt"]);
  23. if(is_array($search_results)):
  24. foreach($search_results as $result):
  25. ?>
  26. Application ID:
  27. <a href="id_search.php?id=<? echo $result['id']; ?>&core=<? echo $_POST['searchopt']; ?>">
  28. <?php
  29. echo $result['application_id'];
  30. ?>
  31. </a>
  32. <br><br>
  33. EPO publication:
  34. <a href=<?php echo $result['epo_publication_url']; ?>>
  35. <?php
  36. echo $result['epo_publication_url'];
  37. ?>
  38. </a>
  39. <br><br>
  40. IPC publication:
  41. <a href=<?php echo $result['ipc_publication_url']; ?>>
  42. <?php
  43. echo $result['ipc_publication_url'];
  44. ?>
  45. </a>
  46. <br><br>
  47. Title:
  48. <?php
  49. echo $result['title'];
  50. ?>
  51. <br><br>
  52. <?php
  53. if ($result['abstract']):
  54. ?>
  55. Abstract:
  56. <?php
  57. echo $result['abstract'];
  58. ?>
  59. <br><br>
  60. <hr>
  61. <?
  62. endif;
  63. ?>
  64. <?php
  65. endforeach;
  66. else:
  67. echo $search_results;
  68. endif;
  69. ?>
  70. </div>
  71. </body>
  72. </html>