paulmo Posted January 10, 2009 Share Posted January 10, 2009 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>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/ Share on other sites More sharing options...
ratcateme Posted January 10, 2009 Share Posted January 10, 2009 this line i am no pro at mysql but i can see this is wrong $query = mysql_query("SELECT terms FROM beta") WHERE MATCH (message) AGAINST ('terms' //table field); Scott. Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734338 Share on other sites More sharing options...
paulmo Posted January 10, 2009 Author Share Posted January 10, 2009 the //table field is a note for display purposes here only. Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734344 Share on other sites More sharing options...
Rushyo Posted January 10, 2009 Share Posted January 10, 2009 "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) Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734346 Share on other sites More sharing options...
paulmo Posted January 11, 2009 Author Share Posted January 11, 2009 i'm sorry, i'm not following your analysis. might you please show me the solution? thanks in advance. Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734376 Share on other sites More sharing options...
ratcateme Posted January 11, 2009 Share Posted January 11, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734378 Share on other sites More sharing options...
paulmo Posted January 11, 2009 Author Share Posted January 11, 2009 I appreciate your input; I'll clarify: there is both an echo of name/message (user form) AND a match of 'message' against 'terms' table in database, which will be echoed. thanks for input Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734395 Share on other sites More sharing options...
ratcateme Posted January 11, 2009 Share Posted January 11, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/140332-insert-and-match-query-help-please/#findComment-734407 Share on other sites More sharing options...
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.