Hi everyone.
I have a text link:
$text = "Hello `TTU will win it all!";
How can I write a script that will look for the ` symbol, search the DB with the team abbreviation, and output a link to the team page?";
I would like the search to read the $text variable and change it to this:
$text = "Hello <a href="team.php?team=TTU">Texas Tech</a> will win it all!";
Thanks guys!