Jump to content
Fórum Script Brasil
  • 0

Sistema de Busca


Tiago Absalão

Question

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...