Hello!Somebody can help me please how can i autolink any word i have in my webpage autolink in php ?
example array
$word_list = array (
'dogs' => 'http://dogs.com',
'dog' => 'http://dogs.com',
'cat' => 'http://cats.com',
'kitten' => 'http://cats.com',
'horse' => 'http://horses.com'
)
any text dogs in my website corispond to link <a href="http://dogs.com">dogs</a>
Thank you in advance.