I am trying to create a search page with MySQL fulltext.
I have a search page with a textbox: < FORM NAME ="form1" METHOD ="POST" ACTION ="catalog.php?action="> I pass the user's input to another webpage (catalog.php) which runs the query: "SELECT * FROM books WHERE MATCH (title) AGAINST (???)"
What do I place in the against() function? The argument needs to extract the user's input from the last page.