html - Finding matching word in MySQL and php -
can me problem. i'm trying echo 1 thing if matches , if doesn't match.
$string = "i love hockey" $tokenize = strtok($string, " "); while ($tokenize !== false) { echo $tokenize;
}
you can use query select * `your_table` `field_name` '%your_word%'
Comments
Post a Comment