Hello All,
I am displying the paragraph by fetching it from DB using function mysql_result($result1,$i,"Summary")
and here in DB database Summary field contains link (for ex: htttp://google.co.in)
but on UI side, it simply shows htttp://google.co.in not a clickable link.
How to do this ???
in short as my mysql_result() is fetching it as plain text, i want to make it as link if it start by http or https something.
is there any inbuild function in php which converts this automatically or I have to make such function?
my Summary Data is not only of links, it is of plain text and links.
if I have to write a code/function for this then it will take much code for such simple thing.SO I am expecting that there should be such function in php!
which am unaware of :(