is there a way to have php recognize link tags in a string ( blah blah<a href = "blink.html">blink</a>) and have the link work when the string is echoed?
thanks for any help.
Sure... just echo() out the string.
PHP does ABSOLUTELY NO user-side parsing/interpreting. PHP just spits out data to the user's browser, just like any other webserver without PHP. If your links aren't working, show us some actual code.
thanks