I have a table on mysql database like this :
|word|replace|
--------------
|sa | sap |
|ri | sip |
|na | sup |
--------------
So, if I submit the word : sarina, it will automatic change : sapsipsup
I've tried like this :
$word= array("sa", "ri", "na");
$replace = array("sap", "sip", "sup");
$str = str_split("sarina",2);
$result = str_replace($word, $replace, $str);
echo $result;
But, it's not dynamic, i mean.. i should split "sarina" to 2 chars first. How to make it simple automaticly for any words?
Thanks in advance.
str_replace? You have to be more specific. – Felix Kling Nov 21 '11 at 14:49