Warning: mysql_query() [function.mysql-query]: Access denied for user ‘SISTEMA’@'localhost’ (using password: NO) in C:\wamp\www\tawebdesigner\nav\pesquisa.php on line 14
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\tawebdesigner\nav\pesquisa.php on line 14
Access denied for user ‘SISTEMA’@'localhost’ (using password: NO)
Question
Tiago Absalão
Estou fazendo um sistema de busca no mural para o meu site e me deparei com este problema que não estou conseguindo resolver!!
O meu ” pesquisar.php” esta deste jeito abaixo e também esta aparecendo esta mensagem refente a linha 14.
O que eu faço?
Desde já grato.
____________________________________________________________________
Mural
<?php
$search = $_POST[search];
$sql = "SELECT id, titulo, `data`, texto
FROM mural
WHERE titulo LIKE '%$search%'
ORDER BY data DESC, id DESC";
$resultados = mysql_query($sql)
or die (mysql_error());
$count = @mysql_num_rows($resultados);
if ($count == 0) {
echo "Sua pesquisa não retornou resultados, por favor tente outros termos
“;
} else {
if ($count == 1) {
echo “Sua pesquisa retornou 1 resultado
“;
}
if ($count > 1) {
echo “Sua pesquisa retornou $count resultados
“;
}
}
?>
–
____________________________________________________________________
E aparece esta mensagem:
Mural
Warning: mysql_query() [function.mysql-query]: Access denied for user ‘SISTEMA’@'localhost’ (using password: NO) in C:\wamp\www\tawebdesigner\nav\pesquisa.php on line 14
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\tawebdesigner\nav\pesquisa.php on line 14
Access denied for user ‘SISTEMA’@'localhost’ (using password: NO)
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.