|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2001-09-02 15:16 UTC] mckaym at illyana dot com
 Trying to register a variable with 16 characters in it's name doesn't work PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 15:00:01 2025 UTC | 
Example Code: $MMBetaDepartment = 'bad name'; $MMBetaDepart = 'good name'; session_register("MMBetaDepart","MMBetaDepartment"); echo $MMBetaDepartment; echo $MMBetaDepart;The following script works fine with PHP 4.1.0 RC2 <?php session_register("MMBetaDepart","MMBetaDepartment"); echo ++$MMBetaDepartment; echo ++$MMBetaDepart; ?>