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
			 
			
		 
		
		
		
		
		
		
			Nevar pievienot vairāk kā 25 tēmas
			Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <?php
# @name: abstracts.php
# @version: 0.1
# @creation_date: 2021-09-24
# @license: The MIT License <https://opensource.org/licenses/MIT>
# @author: Simon Bowie <ad7588@coventry.ac.uk>
# @purpose: Displays ten random abstracts
include '../solr.php';
$random_abstracts = ten_random_abstracts();
?>
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<?php
foreach ($random_abstracts as $record_array):
?>
<?
  foreach ($record_array as $id => $abstract):
    echo $abstract;
  endforeach;
?>
  <br><br>
  <hr>
<?php
endforeach;
?>
</body>
</html>
 |