Re: [PHP] Newsletter kindaa thing

2001-03-20 Thread John LYC

while($r=mysql_fetch_array($result)
$to .=$r['email'].",";


mail($to,);




Dhaval Desai wrote:

 Hi@

 I have a database in whih I have a lot of emails. What
 I want to do is basically a small newsletter kindaa
 thing which is to be mailed to all the emails which I
 am goingto pick from the database.

 If I use

 while($r=mysql_fetch_array($result)
 {
 $email = $r['email'];
 }
 and then use the mail() function to email. It will
 just go to one person . I want it to go to all the ppl
 in the list.

 Thank YOu
 Dhaval Desai

 Thank yOu

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.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] get name of file

2001-03-19 Thread John LYC

$PHP_SELF
returns the file name..
go to php website manual and serach for it..

john

Matthew Delmarter wrote:

 How do I return the name of a file without any extensions or path info.

 Eg how do I return "about" from "http://www.domainz.com/about.htm".

 Regards,

 Matthew Delmarter

 --
 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] Good Free PHP Editor?

2001-03-11 Thread John LYC

http://www.ultraedit.com

not free.. but worth the nominal fee


Andrew Halliday wrote:

 Does anyone know of a good PHP enabled editor that fits the following
 criteria:?

 (in order of importance)
 - Is free
 - Runs under Windows
 - Has colors (syntax highlighting)
 - Can edit multiple files (ie multi threaded)
 - Reports line numbers
 - Has good search  replace functionality

 ???

 Ive been using editpad up till now but my code is starting to get so large
 that ill need syntax highlighting soon...

 AndrewH

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




[PHP] simple OO question

2001-03-04 Thread John LYC

can i do this..?

//declaring class

class myclass{

//declaring properties
...


//declaring methods..
function mymethod(){

//can i declared variable in method?
var $myvar;
...
//do something

}//end of mymethod

///

if yes, do i access myvar like this.
$item = new myclass;
print $item-mymethod()-myvar;


thanks
john





-- 
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] simple OO question

2001-03-04 Thread John LYC

class myclass{

$fields = mysql_list_fields("database1", "table1", $link);
$columns = mysql_num_fields($fields);

for ($i = 0; $i  $columns; $i++) {
var mysql_field_name($fields, $i);
}

}//class

now.. can i do this?
is there a performnance issue here?
can i put this in the constructor?

john




Andrew Halliday wrote:

 yes you can do all of this

 but in no OO language so far have i seen the ability to access a variable
 inside a method...you would have to do this:

 class myclass
 {
  var $myvar;
  function setmyvar($newmyvar)
  {
  $this-myvar = $newmyvar;
  }
 }

 Then you could do this:

 $myclassObj = new myclass();
 $myclassObj-setmyvar(10);
 echo $myclassObj-myvar;

 This would print '10'...

 Cut and paste that exact program in and it should be a working demonstration
 ...

 You should read the php manual more ...
 see
 www.php.net

 AndrewH
 - Original Message -----
 From: "John LYC" [EMAIL PROTECTED]
 To: "PHP List" [EMAIL PROTECTED]
 Sent: Monday, March 05, 2001 1:36 PM
 Subject: [PHP] simple OO question

  can i do this..?
 
  //declaring class
 
  class myclass{
 
  //declaring properties
  ...
  
 
  //declaring methods..
  function mymethod(){
 
  //can i declared variable in method?
  var $myvar;
  ...
  //do something
 
  }//end of mymethod
 
  ///
 
  if yes, do i access myvar like this.
  $item = new myclass;
  print $item-mymethod()-myvar;
 
 
  thanks
  john
 
 
 
 
 
  --
  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]


-- 
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] Re : [PHP] NETSCAPE screws QUERY STRING

2001-03-04 Thread John LYC

try this
printf(" a href=\"pro_page1.php3?title='%s\" ", urlencode($myrow[title])')

john

"Thomas Edison Jr." wrote:

 The urlencode() is working fine with an echo statement
  normal query string.

 But it's NOT working with complex query string in
 printf() including $myrow[something] being picked up
 by mySQL db.

 this works :

 a href="add_pro_over.php3?title=? echo
 urlencode($title) ?"

 this doesn't work :

 printf("a
 href=\"pro_page1.php3?title='urlencode($myrow[title])'\"")

 OR such combinations as given in the manual. I tried
 out almost all!!!

 HELP

 T. Edison jr.

 =
 Rahul S. Johari (Director)
 **
 Abraxas Technologies Inc.
 Homepage : http://www.abraxastech.com
 Email : [EMAIL PROTECTED]
 Tel : 91-4546512/4522124
 ***

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.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]




[PHP] image issues

2001-03-02 Thread John LYC

GIF89a –QŠM=qaš–Šuuš}-
†–meYž†‚yiqmYeyuqAyŽŽy5–M5–Žq†žŽm=iU$–E
bXDWbh7‘?€“€“!`
*.XŽ?X›bXM!, 18p \?Š
p?A€”pA 4dX??$(P@?— (A› ˜@?J
?—3/?@(?,pA€€‚J›Bx‘@3? U*?Y z1‚‚
! \ @@;

i have the above in my database,,...
it is a gif.. that i store as a blob... using fread("*.gif");

then i do this to retrive it...
img src=\"getpic.php?ID=".$ID."\"

//in getpic.php
$query =  "select pic from table where id = '$ID'";
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0, "diagram");

Header("Content-type: image/gif");
print $data;

//
this will siplay my img, my gif..
now the problem is that i want to use function like GetImageSize()..
on this pics.. how do i do it?

john



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

2001-03-01 Thread John LYC

i uses the following method to display an image draw from database..


set_magic_quotes_runtime(0);
$query =  "select diagram from $QuestTab where qns_id = '$QnsID'";
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0, "diagram");
Header("Content-type: image/png");
print $data;
set_magic_quotes_runtime(get_magic_quotes_gpc());
/

i have problem getting the images size
dose anyone know?
i had tried almost all ways i know of.. to using images functions from
the GD lib..

john







-- 
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] image file prob

2001-02-28 Thread John LYC

thanks for the info...
well.
what i did was to fread the files and store them using sessions variables.
at the end of the process. .. i do a walk thur the array and insert them into
the DB...

john

John LYC wrote:

 hi..
 i have a form that allow users to upload several image files.
 every time they submit, i do fread them and assign them to an array...
 this array will be passed on until user confirmation.. then i insert
 into database as blob type

 //freed image file and assign to array.
 $diagram[$ind] =
 addslashes(fread(fopen($HTTP_POST_FILES["QuestDia"]["tmp_name"][$ind],"r"),

 //to facilitate posting of any existing array of the above to the next
 form...
 for($ind=0;$ind  count($diagram);$ind++)
   print "input type=\"hidden\" name=\"diagram[$ind]\"
 value=\"".$diagram[$ind]."\"";

 the script will bring user back to the form and allow them to upload
 more...

 the 2nd time round, i have got error..
 i see parts of $diagram being displayed out... meaning funny characters
 are displayed..
 once $diagram is insert into database,,, the pic is corrupted..
 it works fine if the form does not repeat.. meaning user post images and
 database is updated straight away.
 can someone tell me wat's wrong?

 john

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

2001-02-27 Thread John LYC

if you are using session
session_destroy might do the trick...



"Jacky@lilst" wrote:

 Sorry, it was my mistake. There is session used to store userID and password
 after the successful login. I don't under stand what you mean about to clean
 up variables, how?
 Jack
 [EMAIL PROTECTED]
 "There is nothing more rewarding than reaching the goal you set for
 yourself"
 - Original Message -
 From: Yamin Prabudy [EMAIL PROTECTED]
 To: Jacky@lilst [EMAIL PROTECTED]
 Sent: Tuesday, February 27, 2001 2:40 AM
 Subject: Re: [PHP] logout

  but still you had the variable hanging on the cookies while you are
 running
  the login function...
  just clean out all the variables and then you had a log out function
 (clean
  all the cookies) if you don't used cookies how do you transfer all the
 login
  variable ?
  - Original Message -
  From: Jacky@lilst [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Wednesday, February 28, 2001 4:14 AM
  Subject: [PHP] logout
 
 
  I have php site that user is required to login, but I don't have logout
  function yet. Is there anyone know the most practical way of logout method
  that people use nowadays?, in php I mean. There is no session or cookies
  used in this site.
  Jack
  [EMAIL PROTECTED]
  "There is nothing more rewarding than reaching the goal you set for
  yourself"
 
 
 

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

2001-02-27 Thread John LYC

for cookie...
just setcookie() of the same cookiename to null;


"Jacky@lilst" wrote:

 I have php site that user is required to login, but I don't have logout function 
yet. Is there anyone know the most practical way of logout method that people use 
nowadays?, in php I mean. There is no session or cookies used in this site.
 Jack
 [EMAIL PROTECTED]
 "There is nothing more rewarding than reaching the goal you set for yourself"


-- 
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] multiple file upload..

2001-02-26 Thread John LYC

i have a situation. i hope im clear abt this.
i need to post multiple set of data elements into php.
each set consists of  data elements of text, textarea, radio buttons,
checkboxes and even a file(image).
most fields are optional.
all sets are not subset of each other but belongs to the same universal
set.

all these sets of data elements are posted using one single form
and this form will only display at most 3 set of form elements input at
one time.
the user of course can do more than 3. by declaring how many he/she
wants before landing on this page.
meaning if user chose 4 , the form display 3 sets. User submits and the
form will again appear with one set this time.

the form will not update the database till the user finishes number of
sets he/she had declared.
i  only have problem with the (image) file data element.
this image file.. if existing , is stored into the database as blob.

questions:
1. if file is not declared, what does the file elements holds?... i
sometimes get null value, sometimes get "none"
2. does my logic works.. coz usually the file elements in the last form
post will work.. but the previous will be corrupted.
3. i try using file input elements as arrays.. meaning input type=file
name=filearr[x].. doesn't work?
4.anyone know how to  work around this... does anyone encounter problem
like these before?

thanks for any help
john

here's what i do ignore any syntax error. this is just a stripdown
version of the code.. it is just for putting across the logic..


/

if($submit)
{
//loop to run thur all QuestDiax and convert into characters.
for ($j=0; $i  $index; $i++,$j++)
{
$filestr = "QuestDia".$j;
if($$filestr)
$diagram[$j] = addslashes(fread(fopen($$filestr,"r"),
filesize($$filestr)));
 }//for

//insert into database

}//if submit




print "form enctype=".." method = post ";

for($i=0; $i  3; $i++)
{
   print "input type=\"file\" name=\"QuestDia".$i."\"";
}//for

print "/form";





-- 
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] image file prob

2001-02-26 Thread John LYC

hi..
i have a form that allow users to upload several image files.
every time they submit, i do fread them and assign them to an array...
this array will be passed on until user confirmation.. then i insert
into database as blob type

//freed image file and assign to array.
$diagram[$ind] =
addslashes(fread(fopen($HTTP_POST_FILES["QuestDia"]["tmp_name"][$ind],"r"),

//to facilitate posting of any existing array of the above to the next
form...
for($ind=0;$ind  count($diagram);$ind++)
  print "input type=\"hidden\" name=\"diagram[$ind]\"
value=\"".$diagram[$ind]."\"";

the script will bring user back to the form and allow them to upload
more...

the 2nd time round, i have got error..
i see parts of $diagram being displayed out... meaning funny characters
are displayed..
once $diagram is insert into database,,, the pic is corrupted..
it works fine if the form does not repeat.. meaning user post images and
database is updated straight away.
can someone tell me wat's wrong?

john




-- 
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] how to keep variable alive thur pages?

2001-02-26 Thread John LYC

hi all,

how do i keep an array of variable "alive" thru different pages...
array is assigned with value at say index.php...
user will move from tat page to say index2... index3... index4.php..
in index4.php i can still access the array...


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] simple session question

2001-02-26 Thread John LYC

does session_register() "over-write existing variable of the same
name...?

for example..

//count already registered and holds value 3.

session_register("count");

print $count; //output null;








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

2001-02-25 Thread John LYC

there is addslashes();
http://www.php.net/manual/en/function.addslashes.php

john



[EMAIL PROTECTED] wrote:

 Hi,

 Anyone know the best method to escape the % sign in PHP?

 I`ve checked the manual and devshed and didn`t come across much, is there a
 command like addslashes() or would I have to use something like this...

 $Field="A%D%E";
 $Field1=str_replace("%","percent",$Field);

 Thanks for any input

 Ade

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




[PHP] limitation of file upload??

2001-02-13 Thread John LYC


is there limitations on file upload.. such as file size when using
input type=file???

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] limitation of file upload??

2001-02-13 Thread John LYC

Hi..
can i upload a 50 Mb file thur this method?..
any complication?
john

Ankur Verma wrote:

 The maximum filesize for file uploads is either set in the php.ini file
 using the setting

 upload_max_filesize = 2M  ; Maximum allowed size for uploaded files

 or you can also specify the maximum file upload size at runt time as follows
 FORM ENCTYPE="multipart/form-data" ACTION="_URL_" METHOD=POST
 INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000"
 Send this file: INPUT NAME="userfile" TYPE="file"
 INPUT TYPE="submit" VALUE="Send File"
 /FORM

 consult the following section of the php manual for more info
 http://www.php.net/manual/en/features.file-upload.php
 hope that helps
 regards
 Ankur VermaHCL TechnologiesA1CD, Sec -16Noida, UPIndia
 - Original Message -
 From: "John LYC" [EMAIL PROTECTED]
 To: "PHP List" [EMAIL PROTECTED]
 Sent: Tuesday, February 13, 2001 3:24 PM
 Subject: [PHP] limitation of file upload??

 
  is there limitations on file upload.. such as file size when using
  input type=file???
 
  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 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] limitation of file upload??

2001-02-13 Thread John LYC

well.
tried a 20++ mb file...
it was just as good.. :)

thanks for the help!
john

Ankur Verma wrote:

 The maximum filesize for file uploads is either set in the php.ini file
 using the setting

 upload_max_filesize = 2M  ; Maximum allowed size for uploaded files

 or you can also specify the maximum file upload size at runt time as follows
 FORM ENCTYPE="multipart/form-data" ACTION="_URL_" METHOD=POST
 INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000"
 Send this file: INPUT NAME="userfile" TYPE="file"
 INPUT TYPE="submit" VALUE="Send File"
 /FORM

 consult the following section of the php manual for more info
 http://www.php.net/manual/en/features.file-upload.php
 hope that helps
 regards
 Ankur VermaHCL TechnologiesA1CD, Sec -16Noida, UPIndia
 - Original Message -
 From: "John LYC" [EMAIL PROTECTED]
 To: "PHP List" [EMAIL PROTECTED]
 Sent: Tuesday, February 13, 2001 3:24 PM
 Subject: [PHP] limitation of file upload??

 
  is there limitations on file upload.. such as file size when using
  input type=file???
 
  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 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] checking for presnet file name

2001-02-11 Thread John LYC

is there a pre-defined variable that return present php file name...

for example...

url : www.domain.com/mypage.php

$var == "mypage";



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

2001-01-30 Thread John LYC

hi all,

does mysql support this?

select * from tablename where id in (select id from table2 where cond)

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] can .inc run php script?

2001-01-29 Thread John LYC

hi all,

can .inc file run scripts...

example...

//config.inc

function watever()
{
//do something
$var = something;
return $var;
}

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] can .inc run php script?

2001-01-29 Thread John LYC

THANKS EVERYONE!!!...


John LYC wrote:

 hi all,

 can .inc file run scripts...

 example...

 //config.inc

 function watever()
 {
 //do something
 $var = something;
 return $var;
 }

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