Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Burhan Khalid
[EMAIL PROTECTED] wrote: $url = ".HtmlEntities($url)."\">"."; It appears the parse error is at the end of your opening link tag, so PHP doesn't know what >.HtmlEntities($url) means. I'm at work so I can't test it, but that appears the culprit to me. $url = "" . HtmlEntities($url) . ""; should s

Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Martin . C . Austin
ustin Shared Services A/R Ph 952.906.6653 Fax 952.906.6500 SUPERVALU Tradition .:. Excellence .:. Future Promise 135 Years of Fresh Thinking ... Mário Gamito <[EMAIL PROTECTED]> 03/30/2005 10:15 AM To: php-general@lists.php.net cc: Subject:Re: [PHP

Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Mário Gamito
> > Mário Gamito <[EMAIL PROTECTED]> > 03/30/2005 07:51 AM > > To: php-general@lists.php.net > cc: Subject:[PHP] Parsing... the hell of PHP > > > Hi, > > I'm trying to transform a url taken from the DB from "plain text",

Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Mário Gamito
1 AM To: php-general@lists.php.net cc: Subject:[PHP] Parsing... the hell of PHP Hi, I'm trying to transform a url taken from the DB from "plain text", to the same, but linkable url. All i get is parse errors and alike. Here is my last (of many) attemp

Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Martin . C . Austin
HtmlEntities($url) . ""; should suffice. Martin Austin Mário Gamito <[EMAIL PROTECTED]> 03/30/2005 07:51 AM To: php-general@lists.php.net cc: Subject:[PHP] Parsing... the hell of PHP Hi, I'm trying to transform a url taken from

Re: [PHP] Parsing... the hell of PHP

2005-03-30 Thread Richard Davey
Hello Mário, Wednesday, March 30, 2005, 2:51:02 PM, you wrote: MG> Here is my last (of many) attempt: MG> $url = ".HtmlEntities($url)."\">"."; $url = "" . htmlentities($url) . ''; Best regards, Richard Davey -- http://www.launchcode.co.uk - PHP Development Services "I do not fear computers.

[PHP] Parsing... the hell of PHP

2005-03-30 Thread Mário Gamito
Hi, I'm trying to transform a url taken from the DB from "plain text", to the same, but linkable url. All i get is parse errors and alike. Here is my last (of many) attempt: $url = ".HtmlEntities($url)."\">"."; A warning and a parse error is what i get. Can't get there :( Any help would be apreci