mirror of
https://github.com/serialexperiments0815/SerialsEnforcingInterface.git
synced 2026-07-12 15:32:29 +00:00
47 lines
No EOL
1.1 KiB
PHP
47 lines
No EOL
1.1 KiB
PHP
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Catalog</title>
|
|
<link rel="stylesheet" href="graphics.css">
|
|
<script defer src="catalog.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-column">
|
|
<div class="block_text">
|
|
<h1>Catalog of persons</h1>
|
|
</div>
|
|
<div class="block">
|
|
<div class="container-row" id="container-row">
|
|
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
function getProfiles(){
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<?php
|
|
/*
|
|
while ($row = mysqli_fetch_object($result)) {
|
|
ECHO" <div class='container-column'>
|
|
<div class='block_image'>
|
|
<img src='Images/", $row -> picture,"'/>
|
|
|
|
</div>
|
|
<div class='block_image_text'>
|
|
<p>", $row -> first_name,"</p>
|
|
</div>
|
|
</div>";
|
|
}
|
|
*/
|
|
?>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|