Jump to content

Recommended Posts

attempting db connect, insert user text field ('message') values AND match 'message' values against 'terms' db field (keywords), then echoing matched terms field (from db table). am getting t-string errors; i know my multiple $query(ies) for one $result can't be right...help please? thank you!

 

<?php
mysql_connect("xxxx", "xxx", "xxx") or die(mysql_error()); 
mysql_select_db("xxx") or die(mysql_error()); 
$name = mysql_real_escape_string($_POST['name']);
$message = mysql_real_escape_string($_POST['message']);

mysql_query("INSERT INTO beta (name, message, created) VALUES ('$name', '$message', NOW()) ") or die(mysql_error());
$row_id = mysql_insert_id(); //Put it in a variable for later 
$query = mysql_query("SELECT terms FROM beta") WHERE MATCH (message) AGAINST ('terms' //table field);
$query  = "SELECT name, message FROM beta";

$result = mysql_query($query);

while($row = mysql_fetch_assoc($result))

{
    echo "Name :{$row['name']} <br>" .
         "Message : {$row['message']} <br>";
"Terms: {$row{'terms']}<br>";
} 

?>

Link to comment
https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/
Share on other sites

"the //table field is a note for display purposes here only. "

 

That is not the problem. The problem is your SQL query ends here:

 

mysql_query("SELECT terms FROM beta")

 

Anything else is not being executed as a query and will cause a parse error (except the obligatory ; in the latter case)

i am not a mysql expert so i dont know how the query is meant to look but

$query = mysql_query("SELECT terms FROM beta") WHERE MATCH (message) AGAINST ('terms'3

is wrong see how only "SELECT terms FROM beta" is red that is because that is the only part of the line enclosed inside the ""

i am guessing it should look like

$query = mysql_query("SELECT terms FROM beta WHERE MATCH (message) AGAINST `terms`";

but then this is point less because the next line you overwrite this so any information gained from this query is lost when you go

$query  = "SELECT name, message FROM beta";

i am not sure what you want but if the second line is right then the first line is point less

 

Scott.

 

insted of

$query = mysql_query("SELECT terms FROM beta") WHERE MATCH (message) AGAINST ('terms' //table field);
$query  = "SELECT name, message FROM beta";

$result = mysql_query($query);

while($row = mysql_fetch_assoc($result))

should it be

$query = "SELECT terms FROM beta WHERE MATCH (message) AGAINST `terms`";

$result = mysql_query($query);

while($row = mysql_fetch_assoc($result))

i don't really understand but would that work?

 

Scott.

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.