Re: [PHP] mktime trouble

2003-10-20 Thread Chris Shiflett
--- Peter Torraca <[EMAIL PROTECTED]> wrote: > print date ("m/d/y h:m:s A", mktime(16, 30, 0, 10, 10, 2003)); > > gives the output: 10/10/03 04:10:00 AM > > Where did the 4:10 come from? It should be 4:*30*. 10 is the month, which is what the m means. Use i for minute: http://www.php.net/date

Re: [PHP] OT Re: php|cruise - do unto others...

2003-10-20 Thread myphp
Quoting John Nichel <[EMAIL PROTECTED]>: > Jay Blanchard wrote: > > [snip] > > > I cant attach my loose change to my email :( > >>> > >>>Sadly, that feature won't be implemented till PHP5. ;) > >> > >>Yeah I tried that and it took my underwear and left a welt, I > > > > submitted it > > >

RE: [PHP] A web site interface preference tutorial

2003-10-20 Thread Chris W. Parker
Colin Kettenacker on Monday, October 20, 2003 1:39 PM said: > Ahhh... nobody knows about the site yet (well till now I guess) :) ^ Exactly ---/ ;) -- Don't like reformatting your Outlook r

Re: [PHP] PHP within Frames

2003-10-20 Thread David T-G
Kevin -- ...and then KB said... % % David, % % Thanks for the response. Sure thing! I see that you sent this back only to me. You should generally reply to the whole list because 1) I certainly don't know everything and 2) others will almost certainly answer before I will. I've taken the lib

Re: [PHP] OT Re: php|cruise - do unto others...

2003-10-20 Thread Robert Cummings
On Mon, 2003-10-20 at 17:05, myphp wrote: > Quoting John Nichel <[EMAIL PROTECTED]>: > > > Jay Blanchard wrote: > > > [snip] > > > > Sigh, how many times do we have to answer this > question. RTFM > > > > :) > > > > SADLY, the manual only mentions silver - unfortunately I > only have copp

RE: [PHP] OT Re: php|cruise - do unto others...

2003-10-20 Thread Chris W. Parker
Robert Cummings on Monday, October 20, 2003 2:12 PM said: >> SADLY, the manual only mentions silver - unfortunately I >> only have copper to send!!! Someone should rewrite TFM > > InterJinn can turn your copper into silver. Just like it can simonize > cars, and oth

[PHP] Re: running total (was "Re: [PHP] php|cruise ...")

2003-10-20 Thread Becoming Digital
It will run about $1,200 for John and his wife to attend the cruise. We could try to send him by himself but the price is about the same and I don't think his wife would ever allow him on the php lists again. ;) John will be keeping me up to date on the donations so that things don't get out of

[PHP] need help w a for loop

2003-10-20 Thread Redmond Militante
hi all i'm in need of pointers on how to get the following for loop working correctly for($j=0; $j < $categories_count; $j++){ $categories_array = array(); $tempval="str_categories".$j; array_push($categories_array,'$_REQUEST['.$tempval.']'); } it looks like it's appending the string '$_REQUEST[

RE: [PHP] need help w a for loop

2003-10-20 Thread Chris W. Parker
Redmond Militante on Monday, October 20, 2003 2:15 PM said: > for($j=0; $j < $categories_count; $j++){ > $categories_array = array(); > $tempval="str_categories".$j; > array_push($categories_array,'$_REQUEST['.$tempval.']'); > } > > it looks like it's appending the

RE: [PHP] need help w a for loop

2003-10-20 Thread Chris W. Parker
Chris W. Parker <> on Monday, October 20, 2003 2:27 PM said: > that's because you've got: > >> array_push($categories_array,'$_REQUEST['.$tempval.']'); > > and not: > >> array_push($categories_array,$_REQUEST[$tempval]); Oh maybe I should explain why your original line wasn't working. You

Re: [PHP] need help w a for loop

2003-10-20 Thread Colin Kettenacker
Hi Redmond, A couple of issues I see here. First of all you are resetting the $categories_array to an empty array for each iteration in the loop. You must move it out of the loop. Secondly, you have enclosed the entire $_REQUEST superglobal variable in quotes so it is seeing it as a string rather

Re: [PHP] need help w a for loop

2003-10-20 Thread Redmond Militante
hi i've changed my loop to for($j=0; $j < $categories_count; $j++){ $categories_array = array(); $tempval="str_categories".$j; array_push($categories_array,$_REQUEST[$tempval]); } echo $categories_array[0]; //echoes nothing (should be a string value that was +previously at $_REQUEST['

Re: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
On Mon, 2003-10-20 at 15:35, Colin Kettenacker wrote: > $categories_array = array(); > for($j=0; $j < $categories_count; $j++){ > $tempval="str_categories".$j; > array_push($categories_array,$_REQUEST[$tempval]); > } Or you could try this: $categories_array = array(); for( $j = 0; $j < $categor

RE: [PHP] need help w a for loop

2003-10-20 Thread Chris W. Parker
Ray Hunter on Monday, October 20, 2003 2:47 PM said: > Or you could try this: > > $categories_array = array(); > > for( $j = 0; $j < $categories_count; $j++ ) { > $tempval = "str_categories".$j; > $categories[$j] = $_REQUEST[$tempval]; > } Or you could get rea

Re: [PHP] Re: running total

2003-10-20 Thread David T-G
Edward, et al -- ...and then Becoming Digital said... % % It will run about $1,200 for John and his wife to attend the cruise. We could try to send him by himself but the price is about the same and I don't think his wife would ever allow him on the php lists again. ;) OK. Heh :-) Yes, they

RE: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
> > Or you could try this: > > > > $categories_array = array(); > > > > for( $j = 0; $j < $categories_count; $j++ ) { > > $tempval = "str_categories".$j; > > $categories[$j] = $_REQUEST[$tempval]; > > } > > Or you could get really fancy and try this (my preferred method if not a > little con

[PHP] Print mysql errors

2003-10-20 Thread Joseph Bannon
How do you print the error message sent back from MySQL? $resultCC = mysql_query($queryCC) or die("???"); J. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Print mysql errors

2003-10-20 Thread John W. Holmes
Joseph Bannon wrote: How do you print the error message sent back from MySQL? $resultCC = mysql_query($queryCC) or die("???"); ??? = mysql_error() -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/ php|architect: The Magazine for PHP Professionals – www.phparch.com

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread John W. Holmes
Becoming Digital wrote: php|cruise is coming this March. I'd like to really thank Edward for the kind words. I'm humbled by the comments everyone makes and very grateful for any donation, large or small, that's made. I just consider myself a regular joe here who really likes answering questio

[PHP] passing form data using $_SESSION

2003-10-20 Thread Chris W. Parker
Hiya. The way I do my forms is I create a form page and a corresponding processing page. I don't like to post forms to themself so I always make a processing page that header("Location: ...")'s back to the original page. Normally I create a long string that get's posted back to the original page

[PHP] Read a file, extract and echo some information

2003-10-20 Thread PHP Webmaster
Hi all, I have a little dilemma on my hands that I can't seem to solve. Iv'e looked through the PHP Manual at the fread(), fgets(), fopen(), file() etc functions which I beleive are capabile of what I want to do, but I just can't seem to peice it all together. Anyway, the following code is inside

RE: [PHP] Read a file, extract and echo some information

2003-10-20 Thread Chris W. Parker
PHP Webmaster on Monday, October 20, 2003 4:36 PM said: > As you can see, the above code will not work as the $title variable > has not been set yet. So, I need a way of opening up the home.php > file, extracting the line containing the $title variable and putting >

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-20 Thread Comex
<[EMAIL PROTECTED]> Curt Zirzow: > * Thus wrote Comex ([EMAIL PROTECTED]): > All this is is a xml, yet it breaks all xml rules, ironic as > it sounds. > > Curt I don't know much about XML, so clue me in. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] passing form data using $_SESSION

2003-10-20 Thread Colin Kettenacker
Hi Chris, I don't think there is anything wrong with this. The only gotcha that I can come up with is now that you are using session variables rather than "get" variables, you will no longer be able to bookmark the "state of that page", I think? What I mean is if your URL reads: index.php?e_name

[PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread [-^-!-%-
Is is possible to launch the windows print dialog box, with PHP? Perhaps with a specific HEADER() code? I know it's possible to force download with HEADER(), but can you do the same for printing? I'm looking for something that does the same as the windows.print() function in Javascript. Please a

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread John W. Holmes
[-^-!-%- wrote: Is is possible to launch the windows print dialog box, with PHP? Perhaps with a specific HEADER() code? I know it's possible to force download with HEADER(), but can you do the same for printing? I'm looking for something that does the same as the windows.print() function in Javasc

[PHP] Session migration problem...

2003-10-20 Thread Jake McHenry
During my conversion to use sessions, and turning register globals off, I've run into this problem.. So far the first and only... Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /var/www/html/web/timesheetsessions/index.php on line 26 Here are lines 25, an

Re: [PHP] Session migration problem...

2003-10-20 Thread Chris Shiflett
--- Jake McHenry <[EMAIL PROTECTED]> wrote: > $result = mysql_query("SELECT * FROM `users` WHERE `uname` = > '".$_POST['username']."'"); Don't put uname in single quotes. Aside from that, don't forget that you can interpolate variables with curly braces. Depending on your personal preference, yo

RE: [PHP] Session migration problem...

2003-10-20 Thread Jake McHenry
> -Original Message- > From: Chris Shiflett [mailto:[EMAIL PROTECTED] > Sent: Monday, October 20, 2003 9:56 PM > To: Jake McHenry; [EMAIL PROTECTED] > Subject: Re: [PHP] Session migration problem... > > > --- Jake McHenry <[EMAIL PROTECTED]> wrote: > > $result = mysql_query("SELECT * F

RE: [PHP] Session migration problem...

2003-10-20 Thread Jake McHenry
> -Original Message- > From: Chris Shiflett [mailto:[EMAIL PROTECTED] > Sent: Monday, October 20, 2003 9:56 PM > To: Jake McHenry; [EMAIL PROTECTED] > Subject: Re: [PHP] Session migration problem... > > > --- Jake McHenry <[EMAIL PROTECTED]> wrote: > > $result = mysql_query("SELECT * F

RE: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread Ow Mun Heng
Hi Tom, I've got a question for you regarding this encrypt class of yours.. Just wanted to understand how well it would work against a guy with a sniffer such as ethereal. (presuming he's on the LAN/wifi to access the app) How does the encryption happen?? Client side or server side? How does it g

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread [-^-!-%-
J Holmes, I don't know who, or what, crown you king of this list. But, so far I've yet to see you answer any questions constructively or contribute positively to any user's questions. What's the problem? Did you wake up on the wrong side of the bed or something? Are you sexually frustrated, need

RE: [PHP] Session migration problem...

2003-10-20 Thread Jake McHenry
> -Original Message- > From: Jake McHenry [mailto:[EMAIL PROTECTED] > Sent: Monday, October 20, 2003 10:32 PM > To: [EMAIL PROTECTED] > Subject: RE: [PHP] Session migration problem... > > > > -Original Message- > > From: Chris Shiflett [mailto:[EMAIL PROTECTED] > > Sent: Monday,

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread Justin French
On Tuesday, October 21, 2003, at 11:44 AM, John W. Holmes wrote: [-^-!-%- wrote: Is is possible to launch the windows print dialog box, with PHP? Perhaps with a specific HEADER() code? I know it's possible to force download with HEADER(), but can you do the same for printing? I'm looking for som

Re: [PHP] passing form data using $_SESSION

2003-10-20 Thread Curt Zirzow
* Thus wrote Chris W. Parker ([EMAIL PROTECTED]): > Hiya. > > The way I do my forms is I create a form page and a corresponding > processing page. I don't like to post forms to themself so I always make > a processing page that header("Location: ...")'s back to the original > page. > > if(the nam

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread John Nichel
[-^-!-%- wrote: J Holmes, I don't know who, or what, crown you king of this list. I crowned him king. I was tired of wearing that big heavy thing on my head. -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread John Nichel
Justin French wrote: A simple "no" would have been fine *in this case*. Justin French It was simple. He used real small words. Maybe the OP should have searched the archives? -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsu

Re[2]: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread Tom Rogers
Hi, Tuesday, October 21, 2003, 12:52:33 PM, you wrote: OMH> Hi Tom, OMH> I've got a question for you regarding this encrypt class of yours.. Just OMH> wanted to understand how well it would work against a guy with a sniffer OMH> such as ethereal. (presuming he's on the LAN/wifi to access the app)

Re: [PHP] Launch Print Dialog Box with PHP?

2003-10-20 Thread Curt Zirzow
* Thus wrote [-^-!-%- ([EMAIL PROTECTED]): > > J Holmes, > > I don't know who, or what, crown you king of this list. But, so far I've > yet to see you answer any questions constructively or contribute > positively to any user's questions. What's the problem? Did you wake up > on the wrong side o

RE: Re[2]: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread Ow Mun Heng
>>The encryption happens server side and is really only intended to encrypt >>variables that are passed to web client such as product id and stuff. The only >>way to do secure login and prevent sniffing is to use ssl which will encrypt the >>traffic to and from the client. I suppose javascript coul

RE: [PHP] Session migration problem...

2003-10-20 Thread Chris Shiflett
--- Jake McHenry <[EMAIL PROTECTED]> wrote: > I took the single quotes off of the field name, uname, but still > getting the same error at the same line in the file... > > Any other suggestions? Sure. Let's look at your original code: $result = mysql_query("SELECT * FROM `users` WHERE `uname` =

Re: [PHP] Session migration problem...

2003-10-20 Thread Curt Zirzow
* Thus wrote Jake McHenry ([EMAIL PROTECTED]): > > -Original Message- > > From: Chris Shiflett [mailto:[EMAIL PROTECTED] > > > > --- Jake McHenry <[EMAIL PROTECTED]> wrote: > > > $result = mysql_query("SELECT * FROM `users` WHERE `uname` = > > > '".$_POST['username']."'"); > > > > "se

RE: [PHP] Session migration problem...

2003-10-20 Thread Chris Shiflett
--- Jake McHenry <[EMAIL PROTECTED]> wrote: > Is there any advantage to the curly brackets over the '".."'? There's not enough difference between the two to choose one over the other based on performance, if that's what you mean. Personally, I find that concatenation looks clearer in some cases, a

Re[4]: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread Tom Rogers
Hi, Tuesday, October 21, 2003, 1:40:20 PM, you wrote: OMH> One other thing.. What's the difference in $$ for a site to be https rather OMH> than http?? Cos you need to get a verisign cert or something?? Just OMH> asking.. I use bulkregister.com and if you are a member the cost is $88.00 per ye

Re: [PHP] Re: Yes!!! BTML v1.0 is here!!!

2003-10-20 Thread Curt Zirzow
* Thus wrote Comex ([EMAIL PROTECTED]): > <[EMAIL PROTECTED]> > Curt Zirzow: > > * Thus wrote Comex ([EMAIL PROTECTED]): > > > All this is is a xml, yet it breaks all xml rules, ironic as > > it sounds. > > > > Curt > > I don't know much about XML, so clue me in. http://www.w3.org/XML/ is a good

Re: [PHP] Session migration problem...

2003-10-20 Thread Curt Zirzow
* Thus wrote Chris Shiflett ([EMAIL PROTECTED]): > --- Jake McHenry <[EMAIL PROTECTED]> wrote: > > Is there any advantage to the curly brackets over the '".."'? > > There's not enough difference between the two to choose one over the other > based on performance, if that's what you mean. Personall

[PHP] run exe file

2003-10-20 Thread Deependra b. Tandukar
Dear all, Is there anyway that I can put .exe file on the web, and allow visitors only to run it, not download it. Regards, DT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] run exe file

2003-10-20 Thread John Nichel
Deependra b. Tandukar wrote: Dear all, Is there anyway that I can put .exe file on the web, and allow visitors only to run it, not download it. Regards, DT *Checks list address* Yep, php list. In a word, no. -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing Li

Re: [PHP] run exe file

2003-10-20 Thread Leif K-Brooks
Deependra b. Tandukar wrote: Is there anyway that I can put .exe file on the web, and allow visitors only to run it, not download it. No. -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PH

[PHP] gmdate problem

2003-10-20 Thread irinchiang
Hi all, Having some problem with 'gmdate' here. However, the time doesn't match with the current time on the system. What could be the problem? Do I have to set any timezone or stuff like that?...Hope to get some help here. Tue, 21st Oct 2003, 04:25 -- PHP General Mailing List (ht

Re: [PHP] run exe file

2003-10-20 Thread Colin Kettenacker
>> Dear all, >> >> Is there anyway that I can put .exe file on the web, and allow visitors >> only to run it, not download it. >> >> Regards, >> DT >> > > *Checks list address* Yep, php list. In a word, no. Well how about, in a word, it depends. Okay that's 2 words:) Check out: http://www.

Re: [PHP] run exe file

2003-10-20 Thread John Nichel
Colin Kettenacker wrote: Dear all, Is there anyway that I can put .exe file on the web, and allow visitors only to run it, not download it. Regards, DT *Checks list address* Yep, php list. In a word, no. Well how about, in a word, it depends. Okay that's 2 words:) Check out: http://www.php.n

Re: [PHP] run exe file

2003-10-20 Thread Colin Kettenacker
John Nichel [EMAIL PROTECTED] on 10/20/03 9:42 PM wrote: > Those are all fine and dandy if you want to run the file (*.exe or > whatever) on the same machine that php is running on. However, to run > it on the remote machine, it IS going to be downloaded. That's why I said it depends:) > Even th

[PHP] php cgi configuration w/ htaccess

2003-10-20 Thread Andrew Warner
My ISP hosted website uses the php apache module version, but I'm trying to use php cgi version for the part of my site edit application that actually creates and edits files on the site. This will avoid all the permision and chmod hassle when php tries to create and edit files. My ISP has plac

[PHP] How does unpack works?

2003-10-20 Thread Vincent Elderkamp
Hi, I'm trying to extract an binary file with unpack but I don't understand how it works... The F6FBB program makes the file... It is a hamradio program http://www.f6fbb.org/ This is the structure of 1 record in the file : struct inf_struct { char callsign[8];/* Callsign

Re: [PHP] php cgi configuration w/ htaccess

2003-10-20 Thread Curt Zirzow
* Thus wrote Andrew Warner ([EMAIL PROTECTED]): > I've never used php cgi version, and all the httacces configuration > I've tried to map .phpc files to the php cgi binary hasn't worked > right. I need an example htacces file or an example of a script > header line with php location. With cgi

Re: [PHP] How does unpack works?

2003-10-20 Thread Tom Rogers
Hi, Tuesday, October 21, 2003, 3:12:47 PM, you wrote: VE> Hi, VE> I'm trying to extract an binary file with unpack but I don't understand VE> how it works... VE> The F6FBB program makes the file... VE> It is a hamradio program http://www.f6fbb.org/ VE> This is the structure of 1 record in the

Re[2]: [PHP] How does unpack works?

2003-10-20 Thread Tom Rogers
Hi, Tuesday, October 21, 2003, 3:36:35 PM, you wrote: TR> Hi, TR> Tuesday, October 21, 2003, 3:12:47 PM, you wrote: VE>> Hi, VE>> I'm trying to extract an binary file with unpack but I don't understand VE>> how it works... VE>> The F6FBB program makes the file... VE>> It is a hamradio program

[PHP] mailing labels from databases

2003-10-20 Thread Dennis Gearon
I'm on digest, please CC me. What output document format are people using for doing mailing labels from databases? I have thought about HTML, but it doesn't do multiple pages to the printer well. OperOffice Writer would be nice, can PHP do that? Probably better would be PDF files, since it's re

[PHP] Destroying session if not being used from past 10 mins.

2003-10-20 Thread Binay
Hi all, How can I configure the session to get destroyed, if not being used from past 10 mins. Thanks in advance binay

[PHP] data type conversion in mysql using php

2003-10-20 Thread Uma Shankari T.
Hello, Is it possible to update the float value of mysql to varchar field by using php ?? Regards, Uma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] data type conversion in mysql using php

2003-10-20 Thread - Edwin -
Hello, On Tue, 21 Oct 2003 11:45:30 +0530 (IST) "Uma Shankari T." <[EMAIL PROTECTED]> wrote: > Hello, > >Is it possible to update the float value of mysql to varchar >field by > using php ?? 'Not sure if I understood the question correctly but if you want to change the column type of

Re: [PHP] data type conversion in mysql using php

2003-10-20 Thread Robert Cummings
On Tue, 2003-10-21 at 02:15, Uma Shankari T. wrote: > > > Hello, > >Is it possible to update the float value of mysql to varchar field by > using php ?? You can issue an ALTER TABLE query via mysql_query(). Cheers, Rob. -- .. |

Re: [PHP] cache control with javascript

2003-10-20 Thread - Edwin -
On Mon, 20 Oct 2003 14:44:50 -0400 "Joshua Minnie" <[EMAIL PROTECTED]> wrote: > Does anybody know how I can make force a javascript file (written in > PHP) to be cached if the user agent allows it? > > Here is the situation: > I am creating a dropdown menu system that contains a customer list, >

Re: Re[4]: [PHP] Re: Tom->Re: [PHP] session hijacking

2003-10-20 Thread - Edwin -
Hi, On Tue, 21 Oct 2003 14:02:58 +1000 Tom Rogers <[EMAIL PROTECTED]> wrote: > Hi, > > Tuesday, October 21, 2003, 1:40:20 PM, you wrote: > > OMH> One other thing.. What's the difference in $$ for a site to be > OMH> https rather than http?? Cos you need to get a verisign cert > OMH> or somethi

Re: [PHP] Print mysql errors

2003-10-20 Thread Eugene Lee
On Mon, Oct 20, 2003 at 05:28:08PM -0500, Joseph Bannon wrote: : : How do you print the error message sent back from MySQL? : : $resultCC = mysql_query($queryCC) or die("???"); Stop using stupid Perl syntax. $res = mysql_query($query); if ($res === false) {

Re: [PHP] gmdate problem

2003-10-20 Thread Eugene Lee
On Tue, Oct 21, 2003 at 12:44:38PM +0800, [EMAIL PROTECTED] wrote: : : Having some problem with 'gmdate' here. However, the time doesn't : match with the current time on the system. What could be the problem? : Do I have to set any timezone or stuff like that?...Hope to get some : help here. : :

Re: [PHP] gmdate problem

2003-10-20 Thread - Edwin -
Hi, On Tue, 21 Oct 2003 12:44:38 +0800 [EMAIL PROTECTED] wrote: > > Hi all, >Having some problem with 'gmdate' here. However, the time >doesn't match > with the current time on the system. What could be the problem? Do I > have to set any timezone or stuff like that?...Hope to

[PHP] php|cruise - do unto others...

2003-10-20 Thread Becoming Digital
Anyone who's been on these lists for a few days is already familiar with CPT John W. Holmes. He's probably helped each and every one of us more times than we can count, all without asking for a thing. I think it's time we help him with something. php|cruise is coming this March. As of now, Jo

RE: [PHP] php|cruise - do unto others...

2003-10-20 Thread Jay Blanchard
[snip] PayPal a contribution to [EMAIL PROTECTED] [/snip] Fabulous idea Ed, I wish I'd a thunk it for me. At the risk of seeming ignorant (same risk I run each day by just getting out of bed) how exactly do I "PayPal a contribution to [EMAIL PROTECTED]"? I have made Paypal contributions before, bu

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread John Nichel
Becoming Digital wrote: Anyone who's been on these lists for a few days is already familiar with CPT John W. Holmes. He's probably helped each and every one of us more times than we can count, all without asking for a thing. I think it's time we help him with something. php|cruise is coming this

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread John Nichel
Jay Blanchard wrote: [snip] PayPal a contribution to [EMAIL PROTECTED] [/snip] Fabulous idea Ed, I wish I'd a thunk it for me. At the risk of seeming ignorant (same risk I run each day by just getting out of bed) how exactly do I "PayPal a contribution to [EMAIL PROTECTED]"? I have made Paypal cont

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Becoming Digital
Thanks for the kinds words. I'm glad this has been well received (so far). To make a donation, simply login to PayPal and click the "Send Money" tab at the top of your screen. Once there, put [EMAIL PROTECTED] in the "Recipient's Email" field and fill out the remaining fields to your liking. :

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Didier McGillis
I certain hope no one takes offense to this, John has been a great asset to this community and to this list, its not like its a required donation or anything like that, unlike my sons daycare, pay $200/wk and then "fundraise" for them. From: "Becoming Digital" <[EMAIL PROTECTED]> To: "PHP-DB" <

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Larry E . Ullman
To make a donation, simply login to PayPal and click the "Send Money" tab at the top of your screen. Once there, put [EMAIL PROTECTED] in the "Recipient's Email" field and fill out the remaining fields to your liking. :) Even though this thread is much more PHP-related than many of the topics

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Becoming Digital
Donations are by no means required. I just thought it time to really show John how much we appreciate his help. I'm not sure how I could do so, but I wish I had the ability to require donations from mailing list folk. That would be so cool! Edward Dudlik "Those who say it cannot be done shoul

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Robert Cummings
On Mon, 2003-10-20 at 15:54, Larry E.Ullman wrote: > >> To make a donation, simply login to PayPal and click the "Send Money" > >> tab at the top of your screen. Once there, put > >> [EMAIL PROTECTED] in the "Recipient's Email" field and fill > >> out the remaining fields to your liking. :) >

[PHP] second time: problem with LDAP support

2003-10-20 Thread zxx10
Sorry for resending the same question. Actually, I sent the following message a few days before. However, it seems that no one has the experience on LDAP. It's a headache for me. Hope this time some experts can take a look at the question. I appreciate your kind helps! *

[PHP] Re: running total (was "Re: [PHP] php|cruise ...")

2003-10-20 Thread David T-G
Edward, et al -- ...and then Becoming Digital said... % ... % I'm asking all of you to join me in Operation "Send Captain on the Cruise." All it takes is a few minutes to PayPal a contribution to [EMAIL PROTECTED] Donations of any size are welcome, and every little bit helps. If enough of us

<    1   2