Browse Source

Added link for publication URL

main
Simon Bowie 3 years ago
parent
commit
fc88a94749
2 changed files with 8 additions and 6 deletions
  1. +5
    -3
      site/public/index.php
  2. +3
    -3
      site/random.php

+ 5
- 3
site/public/index.php View File



EPO publication: EPO publication:


<?php
<a href=<?php echo $random_record['publication_url']; ?>>
<?php


echo $random_record['publication_id'];
echo $random_record['publication_url'];


?>
?>
</a>


<br><br> <br><br>



+ 3
- 3
site/random.php View File

$application_id = json_encode($application_id[1]); $application_id = json_encode($application_id[1]);
$output['application_id'] = $application_id; $output['application_id'] = $application_id;


// Search for the publication ID in the content element and display it
// Search for the publication URL in the content element and display it
$content = $json->response->docs[$random]->content; $content = $json->response->docs[$random]->content;
preg_match('/Publication.*\n(.*)\n/', $content, $publication); preg_match('/Publication.*\n(.*)\n/', $content, $publication);
$publication_id = json_encode($publication[1]);
$output['publication_id'] = $publication_id;
$publication_url = json_encode($publication[1]);
$output['publication_url'] = $publication_url;


// Search for the title in the content element and display it // Search for the title in the content element and display it
$content = $json->response->docs[$random]->content; $content = $json->response->docs[$random]->content;

Loading…
Cancel
Save