php-windows Digest 3 Apr 2002 08:25:11 -0000 Issue 1075

Topics (messages 12899 through 12914):

I am trying to get off of this list
        12899 by: Steve at Puddletown
        12914 by: Svensson, B.A.T. (HKG)

Passing Javascript Variables to PHP
        12900 by: Wayne Hinch
        12905 by: Nicole Amashta
        12906 by: Mike Flynn
        12908 by: Robin Bolton
        12912 by: Mike Flynn

Editing setting session_save.path in the php.ini file doesn't register the change!!!
        12901 by: Hammad Sophie
        12902 by: Ryan Marrs
        12904 by: Hammad Sophie
        12910 by: Hammad Sophie
        12911 by: Shrock, Court
        12913 by: Hammad Sophie

Re: Security using Apache & Windows
        12903 by: Tim Mackenzie

problem with mssql_fetch_array
        12907 by: Andy Muth

Re: How to add more domains on apache w2k
        12909 by: martinahingis

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
How can I get off of this list...I have requested many times and no worky...

[EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---


> -----Original Message-----
> From: Steve at Puddletown
> Sent: Tuesday, April 02, 2002 7:54 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] I am trying to get off of this list
> 
> 
> How can I get off of this list...I have requested many times and no worky...


"You can check out, but you can never leave... " :)

> [EMAIL PROTECTED]
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Doesn't this work, or?
--- End Message ---
--- Begin Message ---
Hi all,
 
Does anyone know if it is possible to pass variables from JavaScript to
PHP?
 
Any help will be much appreciated
 
Many Thanks
--- End Message ---
--- Begin Message ---
One possible way to do this is, when submitting a form, set a hidden
variable to the value using javascript. Example:

<script>
function setVars( theForm )
{
 theForm.jsvar.value = 'somevalue';
 theForm.submit();
}
</script>

...

<form>
<input type="hidden" name="jsvar">
<input type="button" name="btnSubmit" value="Submit" onClick="javascript:
setVars(this.form);">
</form>


This is just a suggestion.

--
Nicole Amashta
Web Application Development


"Wayne Hinch" <[EMAIL PROTECTED]> wrote in message
000001c1da71$79967e30$0300a8c0@gromit">news:000001c1da71$79967e30$0300a8c0@gromit...
> Hi all,
>
> Does anyone know if it is possible to pass variables from JavaScript to
> PHP?
>
> Any help will be much appreciated
>
> Many Thanks
>


--- End Message ---
--- Begin Message ---
I have answered variations on this question at least 3 times.  Please check 
the archives.  JavaScript is client-side, PHP is server-side.  The only way 
to go from JavaScript to PHP (in that direction) is by going to a new page 
-- 1. Reloading the current page, with the relevant data in the query 
string; 2. Loading a new page, with the relevant data in the query string; 
3. Submitting a form, with the relevant data in hidden or other kinds of 
fields.

-Mike

At 07:09 PM 4/2/02 +0100, Wayne Hinch wrote:
>Hi all,
>
>Does anyone know if it is possible to pass variables from JavaScript to
>PHP?
>
>Any help will be much appreciated
>
>Many Thanks


--- End Message ---
--- Begin Message ---
Another way to pass data from JavaScript <-> PHP is with cookies.

Use JavaScript to set the cookie and once you reload the script, PHP will
have access to the variables stored in the cookie.

I implemented this in a real-time trivia game (using PHP for the backend
logic, and JavaScript for the client-side logic), and it worked quite well.


-----Original Message-----
From: Mike Flynn [mailto:[EMAIL PROTECTED]]
Sent: April 2, 2002 13:34
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Passing Javascript Variables to PHP


I have answered variations on this question at least 3 times.  Please check
the archives.  JavaScript is client-side, PHP is server-side.  The only way
to go from JavaScript to PHP (in that direction) is by going to a new page
-- 1. Reloading the current page, with the relevant data in the query
string; 2. Loading a new page, with the relevant data in the query string;
3. Submitting a form, with the relevant data in hidden or other kinds of
fields.

-Mike

At 07:09 PM 4/2/02 +0100, Wayne Hinch wrote:
>Hi all,
>
>Does anyone know if it is possible to pass variables from JavaScript to
>PHP?
>
>Any help will be much appreciated
>
>Many Thanks



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--- End Message ---
--- Begin Message ---
At 02:37 PM 4/2/02 -0700, Robin Bolton wrote:
>Another way to pass data from JavaScript <-> PHP is with cookies.

Good point!

-Mike

--- End Message ---
--- Begin Message ---

Hello fellow PHP windows users.

I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago on my win 2k
installation. I am having trouble with the php.ini file: I am trying to set
the session_save.path to something other than the default value  of "/tmp"
(since /tmp doesn't work on windows) such as: "c:\temp\php" (or any other
directory such as: "c:\winnt\temp" etc.)

However, even after I change the value, save php.ini, restart apache, and
run a test script such as phpInfo(), it still showss the default value of
"/tmp"!


I tried changing the value explicitly by setting up a session in a php
script such as:

<?php
session_save_path("c:\temp\php");
session_start();
phpInfo();
?>

it displays the session.save_path() value correctly on the info page!!!

What am i doing wrong? Are there any other values that i need to change? Do
I need to change anything in httpd.conf in Apache? I am utterly confused.

FYI: i am using the php.ini-optimized file. Other changes that i make to it
work, such as when I changed register_globals to on, set the extension
paths, etc.

Your help would be greatly appreciated.

Thanks.

Hammad.
[EMAIL PROTECTED]



--- End Message ---
--- Begin Message ---
Try C:/temp

This is the exact line from my config.
session.save_path = c:/temp



Ryan


-----Original Message-----
From: Hammad Sophie [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, April 02, 2002 2:50 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Editing setting session_save.path in the php.ini file
doesn't register the change!!!


Hello fellow PHP windows users.

I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago on my win 2k
installation. I am having trouble with the php.ini file: I am trying to set
the session_save.path to something other than the default value  of "/tmp"
(since /tmp doesn't work on windows) such as: "c:\temp\php" (or any other
directory such as: "c:\winnt\temp" etc.)

However, even after I change the value, save php.ini, restart apache, and
run a test script such as phpInfo(), it still showss the default value of
"/tmp"!


I tried changing the value explicitly by setting up a session in a php
script such as:

<?php
session_save_path("c:\temp\php");
session_start();
phpInfo();
?>

it displays the session.save_path() value correctly on the info page!!!

What am i doing wrong? Are there any other values that i need to change? Do
I need to change anything in httpd.conf in Apache? I am utterly confused.

FYI: i am using the php.ini-optimized file. Other changes that i make to it
work, such as when I changed register_globals to on, set the extension
paths, etc.

Your help would be greatly appreciated.

Thanks.

Hammad.
[EMAIL PROTECTED]




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---

I tried the suggestions given by Ryan and Symeon but they didn't work. Any
other ideas?

Thanks.

Hammad.

-----Original Message-----
From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 11:50 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Editing setting session_save.path in the php.ini file
doesn't register the change!!!



Hello fellow PHP windows users.

I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago on my win 2k
installation. I am having trouble with the php.ini file: I am trying to set
the session_save.path to something other than the default value  of "/tmp"
(since /tmp doesn't work on windows) such as: "c:\temp\php" (or any other
directory such as: "c:\winnt\temp" etc.)

However, even after I change the value, save php.ini, restart apache, and
run a test script such as phpInfo(), it still showss the default value of
"/tmp"!


I tried changing the value explicitly by setting up a session in a php
script such as:

<?php
session_save_path("c:\temp\php");
session_start();
phpInfo();
?>

it displays the session.save_path() value correctly on the info page!!!

What am i doing wrong? Are there any other values that i need to change? Do
I need to change anything in httpd.conf in Apache? I am utterly confused.

FYI: i am using the php.ini-optimized file. Other changes that i make to it
work, such as when I changed register_globals to on, set the extension
paths, etc.

Your help would be greatly appreciated.

Thanks.

Hammad.
[EMAIL PROTECTED]




--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
I've been playing around with my php installation. Even when I get rid of
the php.ini file from the c:\winnt directory and then run the phpInfo()
script from the browser, I get weird values such as:
Configuration File (php.ini) Path c:\winnt

Can anyone explain whats going on here? I'm really confused.

thanks.

hammad.

-----Original Message-----
From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 12:18 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Editing setting session_save.path in the php.ini
file doesn't register the change!!!



I tried the suggestions given by Ryan and Symeon but they didn't work. Any
other ideas?

Thanks.

Hammad.

-----Original Message-----
From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 11:50 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Editing setting session_save.path in the php.ini file
doesn't register the change!!!



Hello fellow PHP windows users.

I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago on my win 2k
installation. I am having trouble with the php.ini file: I am trying to set
the session_save.path to something other than the default value  of "/tmp"
(since /tmp doesn't work on windows) such as: "c:\temp\php" (or any other
directory such as: "c:\winnt\temp" etc.)

However, even after I change the value, save php.ini, restart apache, and
run a test script such as phpInfo(), it still showss the default value of
"/tmp"!


I tried changing the value explicitly by setting up a session in a php
script such as:

<?php
session_save_path("c:\temp\php");
session_start();
phpInfo();
?>

it displays the session.save_path() value correctly on the info page!!!

What am i doing wrong? Are there any other values that i need to change? Do
I need to change anything in httpd.conf in Apache? I am utterly confused.

FYI: i am using the php.ini-optimized file. Other changes that i make to it
work, such as when I changed register_globals to on, set the extension
paths, etc.

Your help would be greatly appreciated.

Thanks.

Hammad.
[EMAIL PROTECTED]




--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
That is because php is looking for php.ini in c:\winnt.....it has no
relation to whether or not the file actually exists there.  If a php.ini
does not exist where it looks for it, php uses defaults for every internal
setting.

> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 3:26 PM
> To: php-win
> Subject: RE: [PHP-WIN] Editing setting session_save.path in 
> the php.ini
> file doesn't register the change!!!
> 
> 
> I've been playing around with my php installation. Even when 
> I get rid of
> the php.ini file from the c:\winnt directory and then run the 
> phpInfo()
> script from the browser, I get weird values such as:
> Configuration File (php.ini) Path c:\winnt
> 
> Can anyone explain whats going on here? I'm really confused.
> 
> thanks.
> 
> hammad.
> 
> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 12:18 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP-WIN] Editing setting session_save.path in 
> the php.ini
> file doesn't register the change!!!
> 
> 
> 
> I tried the suggestions given by Ryan and Symeon but they 
> didn't work. Any
> other ideas?
> 
> Thanks.
> 
> Hammad.
> 
> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 11:50 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Editing setting session_save.path in the 
> php.ini file
> doesn't register the change!!!
> 
> 
> 
> Hello fellow PHP windows users.
> 
> I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago 
> on my win 2k
> installation. I am having trouble with the php.ini file: I am 
> trying to set
> the session_save.path to something other than the default 
> value  of "/tmp"
> (since /tmp doesn't work on windows) such as: "c:\temp\php" 
> (or any other
> directory such as: "c:\winnt\temp" etc.)
> 
> However, even after I change the value, save php.ini, restart 
> apache, and
> run a test script such as phpInfo(), it still showss the 
> default value of
> "/tmp"!
> 
> 
> I tried changing the value explicitly by setting up a session in a php
> script such as:
> 
> <?php
> session_save_path("c:\temp\php");
> session_start();
> phpInfo();
> ?>
> 
> it displays the session.save_path() value correctly on the 
> info page!!!
> 
> What am i doing wrong? Are there any other values that i need 
> to change? Do
> I need to change anything in httpd.conf in Apache? I am 
> utterly confused.
> 
> FYI: i am using the php.ini-optimized file. Other changes 
> that i make to it
> work, such as when I changed register_globals to on, set the extension
> paths, etc.
> 
> Your help would be greatly appreciated.
> 
> Thanks.
> 
> Hammad.
> [EMAIL PROTECTED]
> 
> 
> 
> 
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
--- End Message ---
--- Begin Message ---
Yes, it seems that php defaults to some hardcoded values if it can't find
the php.ini file. However, my problem still remains unsolved. Even when the
php.ini file is in the c:\winnt directory it is not registering changes to
the session.save_path variable.

Is this a bug or am i doing something wrong?

Hammad.

-----Original Message-----
From: Shrock, Court [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 3:30 PM
To: 'Hammad Sophie'
Cc: '[EMAIL PROTECTED]'
Subject: RE: [PHP-WIN] Editing setting session_save.path in the php.ini
file doesn't register the change!!!


That is because php is looking for php.ini in c:\winnt.....it has no
relation to whether or not the file actually exists there.  If a php.ini
does not exist where it looks for it, php uses defaults for every internal
setting.

> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 3:26 PM
> To: php-win
> Subject: RE: [PHP-WIN] Editing setting session_save.path in
> the php.ini
> file doesn't register the change!!!
>
>
> I've been playing around with my php installation. Even when
> I get rid of
> the php.ini file from the c:\winnt directory and then run the
> phpInfo()
> script from the browser, I get weird values such as:
> Configuration File (php.ini) Path c:\winnt
>
> Can anyone explain whats going on here? I'm really confused.
>
> thanks.
>
> hammad.
>
> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 12:18 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP-WIN] Editing setting session_save.path in
> the php.ini
> file doesn't register the change!!!
>
>
>
> I tried the suggestions given by Ryan and Symeon but they
> didn't work. Any
> other ideas?
>
> Thanks.
>
> Hammad.
>
> -----Original Message-----
> From: Hammad Sophie [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 02, 2002 11:50 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Editing setting session_save.path in the
> php.ini file
> doesn't register the change!!!
>
>
>
> Hello fellow PHP windows users.
>
> I installed Apache 1.3.23 and PHP 4.1.2 a couple of days ago
> on my win 2k
> installation. I am having trouble with the php.ini file: I am
> trying to set
> the session_save.path to something other than the default
> value  of "/tmp"
> (since /tmp doesn't work on windows) such as: "c:\temp\php"
> (or any other
> directory such as: "c:\winnt\temp" etc.)
>
> However, even after I change the value, save php.ini, restart
> apache, and
> run a test script such as phpInfo(), it still showss the
> default value of
> "/tmp"!
>
>
> I tried changing the value explicitly by setting up a session in a php
> script such as:
>
> <?php
> session_save_path("c:\temp\php");
> session_start();
> phpInfo();
> ?>
>
> it displays the session.save_path() value correctly on the
> info page!!!
>
> What am i doing wrong? Are there any other values that i need
> to change? Do
> I need to change anything in httpd.conf in Apache? I am
> utterly confused.
>
> FYI: i am using the php.ini-optimized file. Other changes
> that i make to it
> work, such as when I changed register_globals to on, set the extension
> paths, etc.
>
> Your help would be greatly appreciated.
>
> Thanks.
>
> Hammad.
> [EMAIL PROTECTED]
>
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--- End Message ---
--- Begin Message ---
Sorry if there is any confusion.  The question is entirely PHP related.  My
concern is limiting the scope of PHP's use in my file system.  I know that
there are commands that can be put into PHP.ini that affect the areas in
which read/write operations can be performed by PHP.  I'd like to offer PHP
support to several websites, but not if they have total access to the
server's file system, which appears to be the default setting for PHP.


"Ross Fleming" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> No offence, but chances are that no-one is answering because it's not a
PHP
> related question.  My advice to you is to read the faq's at apache.org
(the
> correct address you need is http://httpd.apache.org/docs/misc/FAQ.html
> specifically section E) and set up apache securely first (which is not too
> difficult, by default, apache only gives people read access to everything
> within the htdocs folder and nothing else) and once you've done that,
> install PHP on top of it.  You'll find that PHP makes little or no
> difference to the security of your web-server.  Reading your email a bit
> more thoroughly it seems that you want to host several websites from one
> machine, yes?  In which case, you want to use the Virtual Hosts functions
of
> Apache, see http://httpd.apache.org/docs/vhosts/ for further details.
>
> Anyway, good luck.  Oh and another link I just found is the support
web-ring
> for apache: http://p.webring.com/navcgi?ring=apachesupport;list
>
> Have fun! :)
>
> Ross
>
> -----Original Message-----
> From: Tim Mackenzie [mailto:[EMAIL PROTECTED]]
> Sent: 02 April 2002 16:47
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Re: Security using Apache & Windows
>
>
> No one can help?!  Please, please, please...
>
> "Tim Mackenzie" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > I'm running W2K with Apache and PHP4.  I'm going to be hosting a number
of
> > websites that I would like to provide PHP support for.  What I don't
want
> is
> > them to be able to access my entire file system.  They should, at most,
be
> > only allowed read/write access to their site folder.  How do I go about
> > doing this?  I've looked around, but I haven't found something that
> > addresses this.  I know there's the basedir value (I think that's it),
but
> I
> > don't understand how to use it.  Could somebody (several people) please
> post
> > any tips they have for securing the file system of a web server.
Thanks!
> >
> >
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


--- End Message ---
--- Begin Message ---
I'm having some problem upgrading my PHP from 4.0.6 to 4.1.2, when I try
executing the function mssql_fetch_array, the script stops responding.  I've
tested the script and isolated it to this one function, it connects to the
database just fine, its only when I try to get retrieve a record set is when
it stops responding.

I'm using mssql 7.0, with the latest service patches on Windows 2000.

Any help would be greatly appreciated!

    Andy



--- End Message ---
--- Begin Message ---
thanks so much

--

martina.


"Warren Vail" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>
> Don't you also need to do something to cause DNS to resolved to the IP of
> the same server for both domains?
>
> Any idea what's required to do this using NT DNS? / BIND?
>
> thanks,
>
> Warren Vail
> Tools, Metrics & Quality Processes
> (415) 667-7814
> Pager (877) 774-9891
> 215 Fremont 02-658
>
>
> -----Original Message-----
> From: Shrock, Court [mailto:[EMAIL PROTECTED]]
> Sent: Monday, April 01, 2002 2:10 PM
> To: 'martinahingis'; [EMAIL PROTECTED]
> Subject: RE: [PHP-WIN] How to add more domains on apache w2k
>
>
> You can add another domain by creating a <VirtualHost></VirtualHost>
section
> in your httpd.conf file for each domain you want to add.  Inside this
> section, you specify the document root directory to serve files from.
>
> a sample follows (More information can be found at
> http://www.apache.org/docs/vhosts/):
>
> # this directive tells apache to use the Host header from the http request
> NameVirtualHost *
>
> # the actual virtual host container for domain1
> <VirtualHost *>
>   ServerName www.domain1.com
>   ServerAlias www.domain1.com *.domain1.com
>   DocumentRoot c:\path\to\domain1\files
> </VirtualHost>
>
> # the actual virtual host container for domain2
> <VirtualHost *>
>   ServerName www.domain2.com
>   ServerAlias www.domain2.com *.domain2.com
>   DocumentRoot c:\path\to\domain2\files
> </VirtualHost>
>
>
> > -----Original Message-----
> > From: martinahingis [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, April 01, 2002 1:03 PM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] How to add more domains on apache w2k
> >
> >
> > I have added a domain at my W2K machine in my network
> > neighborhood, LAN ->
> > DNS Settings. And when i write my ip or the domain name i
> > specified, on ie,
> > it goes my htdocs folder as it must do.
> >
> > My question is that how can i add another domain name. If I
> > add it to DNS
> > settings, where will its htdocs directory? A different htdocs
> > or a folder
> > under it? Is it about the httpd.conf file? I don't know
> > dealing with more
> > than one domains apache at all.
> >
> > thanks for help
> >
> > martina.
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php


--- End Message ---

Reply via email to