I am trying to make the results from mysql results clickable links in php. I am new to php and please help.
just use anchor tag like this
while ($info = mysql_fetch_array($data)) { echo "".$info['title'];. ""; }