[imp] Imp 2.2.3/Horde 1.2.3/Access failure
   
    Joaquim Homrighausen
     
    joho@webbplatsen.se
       
    Wed, 24 Jan 2001 08:25:47 +0100
    
    
  
 * On Wed, 24 Jan 2001 06:59:22 +0100, Joaquim Homrighausen wrote:
 >The PHPLIB tests work, except for the "counter increment" part. And
 >I can't figure out why. I've built PHP4 (4.04pl1) with all the
 >applicable options that I can think of; the only possible (?) culprit
 >I can think of is the mod_unique Apache module..
Using PHP-only counters/session handling, this code works:
<?php
  session_register ("count");
  $count++;
?>
Hello visitor, you have seen this page <?php echo $count; ?> times.<p>