I have 2 strings that are input from a form.
First String is Keywords seperated by a ","
the second is a list of phrases seperated by a ","
my handleform takes these 2 strings and turns them into an array.
$keys = explode(",", $keywords);
$phrase = explode(",", $phrases);
$words = array_merge($keys,$phrase);
then I did a small test and merged the 2 arrays together.
What Im trying to accomplish would be taking the phrases ie (this is a really great site) and inserting keywords in the front middle and end of a prase.
then take the next prases and do the same etc.. Im looking at preg_match or eregi but im still not very good with expressions :/
advice?
Gate