Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Olá pessoal, estou começando a fazer minhas primeiras implemntções de programa php + my sql
ja estou a mais de 12 hrs tentando mostrar o conteudo do banco de dados na tela e só dá esse erro
"Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\sitephp\mysql_php2\form.php on line 20"
O que é esse erro??
---------------------- codigo fonte -------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="[http://www.w3.org/1999/xhtml">](http://www.w3.org/1999/xhtml)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<? include 'conexao.php' ?>
<body>
<table width="600" border="0" cellspacing="0" cellpadding="3">
<tr>
<td width="379" align="center" bgcolor="#F3F3F3">nome</td>
<td width="106" align="center" bgcolor="#F3F3F3">Editar</td>
<td width="97" align="center" bgcolor="#F3F3F3">Excluir</td>
<td width="97" align="center" bgcolor="#F3F3F3">Visualizar</td>
</tr>
<tr>
<?
$sql_vizualizar = mysql_query(" SELECT * FROM noticas ORDER BY hora DESC ");
while ($linha = mysql_fetch_array($sql_vizualizar)){
$mostra_titulo = $linha ['titulo'];
$mostra_id = $linha ['id_noticia'];
$mostra_data = $linha ['datax'];
$mostra_hora = $linha ['hora'];
?>
<td><?php echo date('d/m/Y', strtotime($mostra_data)); ?> | <? echo $mostra_titulo ?> </td>
<td align="center"> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<?
}
?>
</table>
<p> </p>
</body>
</html>
----------SQL
CREATE TABLE `noticias` (
`id_noticia` int(11) NOT NULL AUTO_INCREMENT,
`titulo_noticia` varchar(150) DEFAULT NULL,
`noticia` text,
`datax` date DEFAULT NULL,
`hora` time DEFAULT NULL,
PRIMARY KEY (`id_noticia`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
não consigo visualizar o erro..
desde já agradeço a todos
Carregando comentários...