I've done this code all by myself, but I'm having trouble displaying all the results one below the other.
<?php include 'conexao.php'; ?>
<html>
<head>
<title>GMB Mineração e Comércio LTDA</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="css/default.css"/>
</head>
<body>
<h1>Clientes</h1>
<fieldset class="row2">
<legend><font color="white">-</font></legend>
<p>
<?php
$query = "SELECT * from clientes";
$result = mysql_query($query);
$fetch = mysql_fetch_row($result);
$final = $fetch[0];
?>
</p>
</fieldset>
</body>
</html>