Mas so aparece o primeiro...
QUOTE
<?php require_once('file:///C|/Inetpub/wwwroot/computep/Connections/computerp.php'); ?>
<?php
mysql_select_db($database_computerp, $computerp);
$query_download = "SELECT nome, categoria, descricao FROM downloads";
$download = mysql_query($query_download, $computerp) or die(mysql_error());
$row_download = mysql_fetch_assoc($download);
$totalRows_download = mysql_num_rows($download);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<?php echo $row_download['nome']; ?>
</body>
</html>
<?php
mysql_free_result($download);
?>
<?php
mysql_select_db($database_computerp, $computerp);
$query_download = "SELECT nome, categoria, descricao FROM downloads";
$download = mysql_query($query_download, $computerp) or die(mysql_error());
$row_download = mysql_fetch_assoc($download);
$totalRows_download = mysql_num_rows($download);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<?php echo $row_download['nome']; ?>
</body>
</html>
<?php
mysql_free_result($download);
?>
Mas não quer listar tudo so aparesse o primeiro registro. PQ?

Help














