this is a bit of a script i use when i want to insert something in to my database
$query = "insert into $table
(name, comments) values ('$name', '$comments')";
if i want to search any thing in my database can i write something like this?
$query = "search $table
(name, comments) values ('$name', '$comments')";
i just wonder if there is some scirpt that serach my database
[mysql.com...]