RE: [Phplib-users] minor problem(?) with Auth feature
Brought to you by:
nhruby,
richardarcher
From: Brian P. <bp...@ct...> - 2001-11-15 16:14:04
|
That's not a PHPLib thing. If anything, it would be PHP related. I am guessing it was probably neither. It was most likely just a = coincidence.=20 Are you remembering to put page_close() at the bottom of the page? <?=20 page_open(...); =09 <actual code here> page_close(); ?> -----Original Message----- From: Manuel Aristaran [mailto:mpa...@so...] Sent: Wednesday, November 14, 2001 8:27 PM To: php...@li... Subject: [Phplib-users] minor problem(?) with Auth feature Hi... I have some protected pages using the Auth feature of PHPLIB. When i first tested it, it didn't work, but making an apparently = harmless=20 change made it work: The version of the script that failed looked like this: <?php page_open(array("sess" =3D> "Gili_Session", "auth" =3D> = "Gili_auth")); <actual code here> ?> And with the "harmless" change: <?php page_open(array("sess" =3D> "Gili_Session", "auth" =3D> = "Gili_auth")); ?> <?php <actual code here> ?> Of course this isn't really a problem, but i'm really curious of why = this=20 happens. PHP interpreter gotchas perhaps? Manuel Aristar=E1n mpa...@so... Bah=EDa Blanca, Argentina _______________________________________________ Phplib-users mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phplib-users |