Justtechjobs.com Find a programming school near you






Online Campus Both


php4-beta | 199912

Re: [PHP4BETA] Sessions and Apache problem From: Sascha Schumann (sascha <email protected>)
Date: 12/03/99

On Fri, Dec 03, 1999 at 04:49:36PM -0300, Alejandro Navarro wrote:
>
> Could anyone please help, or just aim me to get the solution?

    Rewriting the URL scanner is on my TODO; the new version will
    avoid the current disadvantages:

    - it only sees hardcoded HTML constructs
    - it breaks, if one mixes PHP and HTML to output one HTML
      element which shall be rewritten
    
    If you want to use the current version, make sure that the
    URL scanner will get your HTML elements as one chunk. I.e.
    instead of writing

        <A HREF="<? echo "/url"; ?>">

    write:

        <? echo "<A HREF=\"/url\">"; ?>

    Also don't use
        
        <A TARGET="_blank" HREF="url">

    but use instead
  
        <A HREF="url" TARGET="_blank">
    

-- 

Regards,

Sascha Schumann Consultant

-- PHP 4.0 Beta Mailing List <http://www.php.net/version4/> To unsubscribe, e-mail: php4beta-unsubscribe <email protected> For additional commands, e-mail: php4beta-help <email protected> To contact the list administrators, e-mail: php4beta-admin <email protected>