[PHP] What does url_rewriter.tags do?

2001-04-16 Thread CC Zona

From v4.0.4 change log
"Added url_rewriter.tags configuration directive (Sascha)"

The option shows up in my phpinfo with default settings 
"a=href,area=href,frame=src,form=fakeentry", but I can't find any info on 
what this setting does.  The change log entry seems to be the only 
reference to it in the PHP.net docs.  What does it do?

-- 
CC

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] What does url_rewriter.tags do?

2001-04-16 Thread Emil Rasmussen

 Subject: [PHP] What does "url_rewriter.tags" do?

 What does it do?


url_rewriter.tags is a list of HTML elements that will get the PHPSESSID
added to them. Its all about sessions:
http://www.php.net/manual/en/ref.session.php.

Emil

-- 
Emil Rasmussen
http://www.noget.net

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] What does url_rewriter.tags do?

2001-04-16 Thread CC Zona

In article [EMAIL PROTECTED],
 [EMAIL PROTECTED] (Emil Rasmussen) wrote:

  Subject: [PHP] What does "url_rewriter.tags" do?
 
  What does it do?
 
 
 url_rewriter.tags is a list of HTML elements that will get the PHPSESSID
 added to them. Its all about sessions:
 http://www.php.net/manual/en/ref.session.php.

Thanks.  The url_rewriter.tags config option isn't mentioned on that page, 
but now that you relate it to sessions it does make more sense.  Though 
setting "form" to value "fakeentry" seems odd since PHPSESSID does also get 
added to forms as a hidden input. shrug  Anyway, at least now I have a 
general idea of its purpose.

-- 
CC

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]