Re: [PHP] string division

2002-09-19 Thread WEB MASTER

||string *strtok*|  (string arg1, string arg2);

|

Meltem Demirkus wrote:

>which function divides astring to the pieces accorrding to another string. 
>for example according to a comma ..
>
>thanks...
>meltem
>
>



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




Re: [PHP] PHP Execution Timer

2002-09-19 Thread WEB MASTER

Easy,
Put a code to the beginning of the page that takes the unix time stamp, 
and another one to the end. The difference is the execution time at the 
server side...

-=[ Julien Bonastre ]=- wrote:

>I have seen it on many sites now and since I have been using PHP for so long and done 
>a huge amount of coding with it I thought it would add a nice touch and it could be 
>used for statistical purposes to assist me in database effeciency and so forth.
>
>The idea is a page "execution" timer.. or a database query timer.. basically it shows 
>you just a time (usually in msecs) it took for the last command to be executed.. I 
>have seen it used for queries and it returns the time it took.. And I am quite sure 
>I've seen it used for actual page generation as well, whereby it says something like 
>"page generated in x.xxx secs"
>
>
>
>I just want to know what function or module covers this feature.. If it is at all 
>possible..
>
>
>
>
>Thanks a million people!
>
>
>--oOo---oOo--
>
> Julien Bonastre [The_RadiX]
> The-Spectrum Network CEO
> [EMAIL PROTECTED]
> www.the-spectrum.org
>
>--oOo---oOo--
>
>



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




Re: [PHP] Generating thumbnails of JPEG/GIF images

2001-05-04 Thread Web master

I wrote a small function like the following to create my won thumbnails.

function make_tumb_nail($url){

  $size=GetImageSize("image/$url");
  $ht=$size[1];
  $wd=$size[0];

  if($ht>$wd){
  $h=$ht;
  for($i=1.01;;){
   if($h<121){
break;
   }
   $h=$ht/$i;
   $w=$wd/$i;
   $i=$i+0.01;
  }
  } else {
  $w=$wd;
  for($i=1.01;;){
   if($w<91){
break;
   }
   $h=$ht/$i;
   $w=$wd/$i;
   $i=$i+0.01;
  }
  }
  $wd=floor(round($w));
  $ht=floor(round($h));
  $returnstring="width=$wd height=$ht border=0";
  return $returnstring;
}

This function returns the thumbnail width and height as string and use 
it along with the original string.

>

Hope this helps.


Richard wrote:

> Greetings.
> 
> Is there any quick way to generate thumbnails of existing pictures in a
> directory? It would seem quite worthless to create 120x120 images of ones
> that already exist, and upload duplicates.. Therefore, dynamic thumbnails
> would be perfect. Any solutions?
> 
> PHP 4.0+ thanks.
> 
> - Richard
> 
> 
> 


-- 
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]




[PHP] very basic question, needs direction!

2001-05-03 Thread Web master

Hello,

I am using PHP as my main language in my websites. I am planning to set 
up my own server to host all my domains. Is there a place, where I can 
see, how do I set up a server with PHP as the main language and what are 
the hardware/software requirements for this?
All I need is just a url or if anybody already did this, please let me know.

Thanks in advance.


-- 
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] Stripping Single Quotes

2001-03-15 Thread Web master

use the following code
$vals=explode("'", "'abc'");
$your_value=$vals[0]; //I am little confused, if it is not working try 
index1

Elan wrote:

> Hi,
> 
> I have a string, "'abc'". How do I convert it to "abc" (i.e. how do I
> strip the embedded single quotes) with a minimum of overhead?
> 
> (In case you'r wondering: I created the quoted string to store it in
> MySQL, now I want to display the same string in a Webpage. Usually the
> strings I display do not have embedded single quotes, and I add the
> single quotes when I output the string printf(" value='%s'>", $value); That works well enough for strings that don't
> already have embedded quotes. But when they do I want to get rid of them
> quickly and easily, otherwise I get ...value = ''some value''> and
> Netscape doesn't display the value embedded in two single quote
> characters).
> 
> TIA,
> 
> Elan
> 


-- 
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] Variable value doesn't stay "Null"

2001-03-15 Thread Web master

If you declare the fields as NOT NULL in mysql table, during insert, if 
you are nor insertint the field, it will default to 0 (for numbers) and 
'blank' (for text fields). If you already have a table update column to 
0 or blank and do 'alter table' to make the field not null

Johnson, Kirk wrote:

> You may want to check the field definitions in the database table. If I
> recall correctly, some MySQL numeric field types default to "0" when an
> empty string gets written to them. The problem (and solution) may not be in
> the PHP script at all.
> 
> Kirk
> 
>> -Original Message-
>> From: Michael Conley [mailto:[EMAIL PROTECTED]]
>> Sent: Thursday, March 15, 2001 1:01 PM
>> To: 'Chris Lee'; [EMAIL PROTECTED]
>> Subject: RE: [PHP] Variable value doesn't stay "Null"
>> 
>> 
>> So how do I get the PHP script that stores the information in 
>> the My SQL
>> database to not store "0"?  a "0" value is a valid value for 
>> this variable.
>> I don't want 0 to be the value of the variable if nothing is 
>> entered.  Right
>> now, the database is populated with 0's for the fields that 
>> are not filled
>> in.
>> 


-- 
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] Help! Can't redeclare already declared function in

2001-03-15 Thread Web master

I thought it will say, which function it can not redeclare.
How many functions you have in the file?
If it is small number, you could comment out each function and see which 
one is casuing the problem.


Jack Sasportas wrote:

> I just finished coding everything on a project it was working (all
> nighter), and now something I just changed is causing this error
> 
> "Can't redeclare already declared function in "
> 
> There is no duplication of functions declarations.
> 
> The thing is it is basically saying that no matter what functions are in
> the file, you will get the error on whatever function is 1st function in
> the file of functions, and the line it always points to is the closing
> "}" of the function itself...
> 
> Tried to get help on php.net, but didn't find anything.
> Any Ideas ?
> 
> ___
> Jack Sasportas
> Innovative Internet Solutions
> Phone 305.665.2500
> Fax 305.665.2551
> www.innovativeinternet.com
> www.web56.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] Paging a Recordset

2001-03-15 Thread Web master

you can use 'limit x,y' in MySql.

James Crowley wrote:

> Hi,
>   I want to spread the results of a recordset over a number of pages. In ASP,
> I would have opened a connection with a client-side cursor... but with PHP
> (using it's ODBC functions), it only seems to be able to execute an SQL
> statement, and return all the results... which isn't very efficient if I
> have 500 results with 10 per page!
>   Also, how do I change the cursor location?
> 
> Regards,
> 
> - James
> 
> Editor, VB Web
> ==
> Web   - http://www.vbweb.co.uk
> Email - [EMAIL PROTECTED]
> ICQ#  - 60612011
> ==
> 
> 


-- 
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]




[PHP] Direction Help!

2001-02-27 Thread Web master

Hello Php Gurus,

Need help on direction. I am using PHP for a while now, I was able to 
develop very nice sites using PHP/MySql. Now I very comfortable in using 
PHP and I want to learn more advanced features of PHP. Can anyone tell 
me go from here??
I have used PHP for tradtional query based application so far.

Thanks in advance.
-Unni


-- 
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] Qoute problem

2001-02-14 Thread Web master

My approach towards this problem was to parse the data before inserting 
and before displaying.
Before inserting the data entered by user, do something like 
str_replace($comments, "'","~") and do the same thing for " do a 
different character like | and then insert it into database.
Do the reverse before displaying the data, it should fix your problem..

Tanya Brethour wrote:

> Hi! I was hoping that someone could help me out. I am not positive if I
> understand whats going on.. so let me try to explain.
> 
> This is a process to modify news articles in a MySQL database.
> 
> (From the point after picking the article to modify)
> PHP Script #1:
>   I grab everything from the database and stick it into the HTML form
> (textarea, text, etc). I allow the user to modify whatever they want.
> 
> PHP Script #2:
>  This script takes the new information and displays it to the user.. it is
> a preview of what it will look like with the changes.
> 
> PHP Script #3:
>  Updates the news article in the database.
> 
> Now the problem I am having.. is that the description and content fields
> have qoutes in them. For example:
> Description: I like to run and walk. I love "smelly cheese."
> 
> So.. when it tries to update the database. It will only store this as the
> description:
>   I like to run and walk. I love\\
> 
> I know that its because the qoutes are not being escaped correctly.. and
> it seems as though it is escaping the escape. 
> 
> So my question is.. how can I keep my qoutes?
> 
> Just FYI.. I am making the user enter in the description and content in
> html. So i cant just change the qoutes to HTMLTags because it would change
> my  and  etc.
> 
> Below is an example of the code (shortened for an example):
> 
> PHP Script #1: Editing description
> 
> print'
> 
> Description:';
> echo $info["description"];
> print'
> ';
> 
> PHP Script #2: (preview changes)
> 
> 
> Description:
>  
> 
> PHP Script #3: (update database)
> $sql = "UPDATE news SET release_date='$date', title='$title',
> description='$describe', contact='$contact', content='$test', type='$type'
> WHERE news_id=$id";
> $result = mysql_query($sql)
> 
> 
> Thanks in advance.
> 
> -Tanya
> 
> 
> 
> 
> 
> 
> 


-- 
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] @ Scope

2001-02-14 Thread Web master

My understanding is, it simple supress the any messages generated from 
the result. So I guess it is local.

Karl J. Stubsjoen wrote:

> When you @ "at" a command (supress error messaging) within a function, is
> the scope of the @ within the function?
> 
> Example:
> 
> 
> CloseODBC(1);
> 
> # is error message supressed here too?
> 
> 
> function CloseODBC($connection_id)
> {
> # error messaging supressed
> @odbc_close($connection_id);
> 
> }
> 
> 


-- 
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] Broken icon?

2001-02-12 Thread Web master

I am doing the same with the following code

$rec1=@mysql_fetch_object($result);
$image=$rec1->iurl;
$alt=$rec->mnam;
$array=GetImageSize("image/$image");
echo "";

and it works  a charm.



Malouin Design Graphique wrote:

> Hello,
> 
> My problem is that I have in the table below an URL (see $indice_url)
> that points to the graphic (.gif) that has to be use by the the
> "$indice" variable. The graphics ( five different ones) located in
> the same folder as the script " data_out.php3"
> 
> Any Guru out here could shred me the "Blue Light" on how to make the
> images to show?
> 
> Thanks in advance,
> 
> Best regards,
> 
> Yves
> 
> 
> 
> This is the table that feeds:
> 
> CREATE TABLE indice (
>id int(11) DEFAULT '0' NOT NULL auto_increment,
>date text,
>indice text,
>indice_url varchar(255),
>PRIMARY KEY (id)
> );
> 
> 
> 
> The file to get the data out:
> 
>  
> /* data_out.php3 */
> 
> $db = mysql_connect("www.server.com", "root", "password");
> mysql_select_db("db_name", $db);
> $sql = "select * from table_name order by 'date'";
> $sql = "select * from table_name";
> $result = mysql_query($sql);
> while ($row = mysql_fetch_array($result)) {
> print("");
> printf("%s\n",
> $row["indice_url"]);
> }
> ?>
> 
> 
> 
> The output that it gives me (in source mode):
> 
>  
> image_f03.gif
> image_f05.gif
> image_f01.gif
> 
> 



-- 
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] mysql +php+ array

2001-02-12 Thread Web master

Hi Ramiro,

Your code looks ok, why don't you try the following and tell me is 
working or not

$arr_aantal = explode (",", $aantal);
$arr_str_men = explode (",", $str_men);
$arr_recht = explode (",", $recht);
$arr_rechtverstek = explode (",", $rechtverstek);
$arr_verstekgelijk = explode (",", $verstekgelijk);
$arr_verstekongelijk = explode (",", $verstekongelijk);
rows = count($arr_aantal);

for($b=0; $b<$rows; $b++):
  $sql = "INSERT INTO $table_name SET aantal='". trim($arr_aantal[$b]) ."',str_men='" 
. trim($arr_str_men[$b]) ."',recht ='"
.. trim($arr_recht[$b]) ."',rechtverstek='" . trim($arr_rechtverstek[$b])
.."',verstekgelijk='" . trim($arr_verstekgelijk[$b]) ."',verstekongelijk='" .
trim($arr_verstekongelijk   [$b]) . "', soorten=
'$bewaar'";
  mysql_query ($sql)
 or die ("cannot execute update query");
}

only change I made was to use the count from explode.


Ramiro Radjiman wrote:

> I have the following code:
> 
> $arr_aantal = explode (",", $aantal);
> $arr_str_men = explode (",", $str_men);
> $arr_recht = explode (",", $recht);
> $arr_rechtverstek = explode (",", $rechtverstek);
> $arr_verstekgelijk = explode (",", $verstekgelijk);
> $arr_verstekongelijk = explode (",", $verstekongelijk);
> 
> for($b=0; $b<$rows; $b+=1){
> $sql = "INSERT INTO " . $table_name . " SET aantal='" .
> trim($arr_aantal[$b]) ."',str_men='" . trim($arr_str_men[$b]) ."',recht ='"
> .. trim($arr_recht[$b]) ."',rechtverstek='" . trim($arr_rechtverstek[$b])
> .."',verstekgelijk='" . trim($arr_verstekgelijk[$b]) ."',verstekongelijk='" .
> trim($arr_verstekongelijk   [$b]) . "', soorten=
> '$bewaar'";
> 
> mysql_query ($sql)
>  or die ("cannot execute update query");
> }
> 
> if i do this the following sql statement is created,
> 
> 
> INSERT INTO testen SET
> aantal='22',str_men='2',recht='2',rechtverstek='2',verstekgelijk='2',verstek
> ongelijk='2',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> INSERT INTO testen SET
> aantal='',str_men='',recht='',rechtverstek='',verstekgelijk='',verstekongeli
> jk='',soorten='plat3mm'
> 
> 
> so the first array element goes wel, but the next contains no data, but i
> know for sure that there is dat in it. See above.
> 
> Could anyone give me a clue?
> 
> aantal=$arr_aantal[$b]   should work i thaught.
> or
>  "aantal= ". $arr_aantal[$b] ." str_men=" . $arr_str_men[$b] . and so fort.
> 
> 
> 
> 
> 
> 


-- 
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] Time in php problem....

2001-02-12 Thread Web master

I think you can do all of these using the session.
In your log on script, after validating his uid and pwd, insert a row 
with current timestamp and his id.
Either during log off or session close insert another row with uid and 
current time stamp. (This part I never done)
Rest is to manipulate the values the log table information. (may be 
develop a admin screen, which manipulates the log table)

Hope this helps.

Ng Kok Chun wrote:

> hi... i need some help...
> 
> currently i doing web base programming ( econsultant )using php, apache and mysql as 
>well... now i facing a problem which i need :
> 1) get time when consultant log on
> 2) get time when consultant log off
> 3) calculate how long for the specified consultant been log on to the web
> 4) accumulate all the time everyday
> 5) then multiple accumulate with working rate ( X ).
> 6.) finally output to web ( html form )
> 
> pls help !
> thanks !
> 


-- 
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] Whats wrong with the following code?

2001-01-11 Thread Web master

Thank you and sorry for this stupid mistake

Hsieh, Wen-Yang wrote:

> - Original Message - 
> From: "Web master" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, January 11, 2001 2:36 PM
> Subject: [PHP] Whats wrong with the following code?
> 
> 
>> Hello,
>> 
>> Could any tell me whats wrong with the following code? Even though I 
>> have more than 10 tables in the database, it is not showing any numbers.
>> 
>> $id_link = @mysql_connect('localhost',$uid,$pwd);
>> 
>> $result=@mysql_db_query($db,$id_link,"show tables");
> 
> 
> $result=@mysql_db_query($db, "show tables", $id_link);
> 
>> $num_of_rows=@mysql_num_rows($result);
>> echo $num_of_rows;
>> 
>> 
>> Thanks.
>> 
>> 
>> -- 
>> 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]
>> 




[PHP] Whats wrong with the following code?

2001-01-11 Thread Web master

Hello,

Could any tell me whats wrong with the following code? Even though I 
have more than 10 tables in the database, it is not showing any numbers.

$id_link = @mysql_connect('localhost',$uid,$pwd);

$result=@mysql_db_query($db,$id_link,"show tables");
$num_of_rows=@mysql_num_rows($result);
echo $num_of_rows;


Thanks.


-- 
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] help database creation....

2001-01-11 Thread Web master

better use 'root' user or create a user with enough privilage to create 
database
Jesus Nava wrote:

> Hi everybody!!!
> I want to create a new database using a form to take the name of the database. For 
>some reason I get "Couldn't create database". Can some body tell me what I am doing 
>wrong...
> 
>  if (!$dname)
> {
>   header("Location: http://localhost/db_createdb.html");
>   exit;
> }
> $db_name = $dname;
> $connect = @mysql_connect("localhost", "jnava", "jnava77") or die("Couldn't 
>connect");
> $result = mysql_create_db($db_name, $connect) or die("Couldn't create database.");
> 
> if ($result)
> {
>  $msg = "Database has been created!";
> }
> ?>
> 
> 
> Create a MySQL Database
> 
> 
> 
> 
> 
> 
> 


-- 
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] BIG include file !!!

2001-01-10 Thread Web Master

I don't think so, I have bunch of include files, which have more than 5000 lines
and is running very fine.

Abe wrote:

> Hey Guys,
>
> I am developing an application in PHP.  I make use of an include file that
> contains regularly used functions.  As I am working I am taking more and
> more of the code out and putting it into functions straight into the include
> file.  This file is included on almost every page and I am worried that it
> is going to slow the pages down.  Will it have a large effect on the pages
> speed.  It's only about 400 lines at the moment but getting bigger the way I
> am working
>
> Is it likely to slow the pages much even if only some of the functions are
> called from particular pages.
>
> Thanks,
> Abe
>
> --
> 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]


-- 
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] rand is not random for me :(

2001-01-10 Thread Web Master

you have generate a unique seed to generate random number srand, please read

http://www.php.net/manual/function.rand.php

has more info

Brandon Orther wrote:

> When I use random rand(1, 10) I always get 2?
>
> Thank you,
>
> 
> Brandon Orther
> WebIntellects Design/Development Manager
> [EMAIL PROTECTED]
> 800-994-6364
> www.webintellects.com
> 
>
> --
> 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]


-- 
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] How can I get a random number

2001-01-10 Thread Web Master

try

http://www.php.net/manual/function.rand.php

Brandon Orther wrote:

> How can I get a random number
>
> Thank you,
>
> 
> Brandon Orther
> WebIntellects Design/Development Manager
> [EMAIL PROTECTED]
> 800-994-6364
> www.webintellects.com
> 
>
> --
> 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]


-- 
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]