Science Score: 18.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic links in README
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Unable to calculate vocabulary similarity
Last synced: 10 months ago · JSON representation ·

Repository

citations

Basic Info
  • Host: gitlab.com
  • Owner: hussamahtash11
  • Default Branch: main
Statistics
  • Stars: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 4 years ago
Metadata Files
Citation

Citation (Citation.php)

<?php require('header.php'); 
require ('connexion.php');
?>


<?
$limit = 10;  
if (isset($_GET["page"])) {
	$page  = $_GET["page"]; 
	} 
	else{ 
	$page=1;
	};  
$start_from = ($page-1) * $limit;  
$result = mysqli_query($conn,"SELECT * FROM user_table ORDER BY userid ASC LIMIT $start_from, $limit");
?>
<table >
  <thead class="center" >
    <tr>
      <th scope="col">Citation</th>
      
    </tr>
  </thead>
  <?php
            $pros = $mysqli->query('SELECT * FROM citations');
            foreach($pros as $projet){
        ?>
  <tbody>
    <tr>
      <td data-label="Account">
      <?php echo $projet['content']?>

      </td>
    </tr>

  </tbody>
  <?php } ?>
</table>

<?php require ('footer.php'); ?>