View Single Post
  #11 (permalink)  
Old 10-06-2004, 03:24 PM
php~pro php~pro is offline
WebProWorld Pro
 

Join Date: May 2004
Location: United Kingdom
Posts: 176
php~pro RepRank 0
Default

With a correct escape. Try reading up on syntax in the manual. You can even download your own free copy. More satisfying to solve it yourself than mooching forums for the answer surely.

And Ive never seen anything like this. Did you make it up or did someone give you it.
Code:
$htmlwebsite = '<a href<>\\'.$website.'\\>'.$website.'';
Below should be correct
Code:
$htmlwebsite = "<a href=\"".$website.">".$website."</a>";
Also use the editor code wrappers as this bb will not always correctly display your code.[/code]
Reply With Quote