Jump to content
Fórum Script Brasil
  • 0

PHP e MYSQL


FernandoXLR

Question

Eae pessoal, meu primeiro tópico, normalmente encontro as soluções dos meus problemas na net, mas dessa vez não consegui achar..

Tenho um formulário html:

<table>
<tr>
<form action="index.php" method="POST">
<td>Query personalizado</td>
<td><input type="text" name="query"></td>
<td><input name="enviar" type="submit" value="enviar"></td>
</form>
</tr>
</table>
Envio esse comando: SELECT * FROM tabela WHERE market='br' ORDER BY id ASC Quando a página recebe a query por post:
<?php
include "conexao.php";

$query = $_POST['query'];
$res_table = mysql_query($query) or die (mysql_error());
/*
...
faço a exibição da tabela pelo html
/*
?>

Está retornando esse erro: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'br\' ORDER BY id ASC' at line 1

Alguém pode me ajudar a passar os querys pelo POST? dá erro onde tem as '' (aspas simples), pois quando uso número sem aspas a exibição é feita corretamente.

Desde já agradeço.

Link to comment
Share on other sites

2 answers 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...