Forum Moderators: coopster
I was hoping someone could tell me if it was possible to select all words containing ceratin letters.
Eg
If i had a table wit a word column that had a huge list of words and i wanted to select every word that contained all these letters "qdsa".
Then it would return the words:
quads
quidas
ect
but wouldn't return
queen
because queen does not contain all letters specified.
Would it be something like this:
select * from word where word = "qsda";
THat doesn't work by the way :)
Any help would be great.
Thanks
As per the manual, explode example
<<<<<
function explode_with_keys($seperator, $string)
{
$output=array();
$array=explode($seperator, $string);
foreach ($array as $value) {
$row=explode("=",$value);
$output[$row[0]]=$row[1];
}
return $output;
}
>>>>