| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
  [2001-03-22 11:35 UTC] ieleja at arc dot lv
 from phorSale//common/common.functions.php
    {
        $retStr .= "<a href=" . basename($PHP_SELF) . "?lo=" . ( $lo - $recordsPerPage ) . "&" . $xtraQuery . "><< Previous</a> " : "" ;
    }
It's happens only under Netscape 4.76
Under IE 5.5, 6.01 all works fine
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 12:00:01 2025 UTC | 
Your example code doesn't work. This works for me just fine: (of course the undefined vars don't work..) <?php $retStr= '<a href="' . basename($PHP_SELF) . "?lo=" . ($lo - $recordsPerPage ) . "&" . $xtraQuery . '"><<Previous</a> " : "' ; echo $retStr; ?> And I don't know how used browser would matter on this. --Jani