Mini Shell
<script src="https://www.riobrasil.net/boot/assets/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<center>
<?
include"conexao.php";
$sql = "SELECT * FROM galeriadefotoscategoria order by categoria asc ";
$res = mysqli_query($con, $sql);
$total = mysqli_num_rows($res);
while ($f = mysqli_fetch_array($res))
{
$idcat = $f["id"];
$categoria = $f["categoria"];
// echo"<label style = \"margin-bottom: 15px; margin-right:15px; \" class=\"btn btn-info\"> $categoria x </label>";
echo"
<a href=\"addfotogaleria?categoria=$idcat\" class='btn btn-success' style='width:90%; margin-top:18px; ' role='button' >incluir foto para $categoria</a></br> ";
}
?>
</center>
Zerion Mini Shell 1.0