Your IP : 216.73.216.48
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
?><!DOCTYPE html>
<html lang="bg">
<head>
<style>
@font-face
{
font-family: mf;
src: url("/font/calibri.woff");
}
@font-face
{
font-family: im;
src: url("/font/impact.ttf");
}
body, div, span, font
{
font-family: mf;
}
</style>
</head>
<body>
<?php
include("./conn.php");
$cards=mysqli_query($db, "SELECT * FROM `students2016` WHERE `a`='1' ORDER BY `i` ASC");
while ($singlecard=mysqli_fetch_row($cards))
{
print("".$singlecard[1]."");
}
?>
</body>
</html>