3
I’ve done all this code myself, but I’m having a hard time displaying all the results below each 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>
Take a look at [tour]. You can accept an answer if it solved your problem. You can vote on every post on the site as well. Did any help you more? You need something to be improved?
– Maniero