Re: [PHP] whoami explanation

2009-03-03 Thread Robert Cummings
On Tue, 2009-03-03 at 10:42 -0500, PJ wrote: > This really needs some explanation > I found this on the web: > > with it there was the comment "the direction of those single-quotes matters" > (WHY ?) > and it works > > But this (_*FROM THE PHP MANUAL***_ * - exec()* executes the given > /com

Re: [PHP] whoami explanation

2009-03-03 Thread Per Jessen
PJ wrote: > This really needs some explanation > I found this on the web: > > with it there was the comment "the direction of those single-quotes > matters" (WHY ?) and it works > GIYF - look up "back quotes". > But this (_*FROM THE PHP MANUAL***_ * - exec()* executes the given > /command

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 10:42, PJ wrote: > This really needs some explanation > I found this on the web: > > with it there was the comment "the direction of those single-quotes matters" > (WHY ?) Those are called "backtick operators." Like in BASh and most other *NIX shells, that instructs t

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Per Jessen wrote: > PJ wrote: > > >> This really needs some explanation >> I found this on the web: >> >> with it there was the comment "the direction of those single-quotes >> matters" (WHY ?) and it works >> >> > > GIYF - look up "back quotes". > > >> But this (_*FROM THE PHP MANU

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Per Jessen wrote: > PJ wrote: > > >> This really needs some explanation >> I found this on the web: >> >> with it there was the comment "the direction of those single-quotes >> matters" (WHY ?) and it works >> >> > > GIYF - look up "back quotes". > > >> But this (_*FROM THE PHP MANU

RE: [PHP] whoami explanation

2009-03-03 Thread bruce
d... -Original Message- From: PJ [mailto:af.gour...@videotron.ca] Sent: Tuesday, March 03, 2009 7:57 AM To: Per Jessen Cc: php-general@lists.php.net Subject: Re: [PHP] whoami explanation Per Jessen wrote: > PJ wrote: > > >> This really needs some explanation >> I fou

Re: [PHP] whoami explanation

2009-03-03 Thread Per Jessen
PJ wrote: > forgot to add: > What's the difference between back ticks or quotes and regular single > quotes? text in back ticks is executed via a shell, text in single quotes isn't. > How does one enter back quotes from the keyboard? > Depends on your keyboard - on my current keyboard, the ba

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 10:57, PJ wrote: >> > forgot to add: > What's the difference between back ticks or quotes and regular single > quotes? > How does one enter back quotes from the keyboard? Welcome to the Internet! The first place you should look when you have a question is on Google

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Per Jessen wrote: > PJ wrote: > > >> This really needs some explanation >> I found this on the web: >> >> with it there was the comment "the direction of those single-quotes >> matters" (WHY ?) and it works >> >> > > GIYF - look up "back quotes". > > >> But this (_*FROM THE PHP MANU

Re: [PHP] whoami explanation

2009-03-03 Thread Robert Cummings
On Tue, 2009-03-03 at 10:57 -0500, PJ wrote: > Per Jessen wrote: > > PJ wrote: > > > > > >> This really needs some explanation > >> I found this on the web: > >> > >> with it there was the comment "the direction of those single-quotes > >> matters" (WHY ?) and it works > >> > >> > > >

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 11:03, PJ wrote: >> > ok, ok, I found it but you guys are assuming that this is something > everybody should know... hell, I've been tinkering with programming and > unix etc. for many, many years and this is the first time I ran into > back quotes. > SORRY! You're assu

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: > On Tue, Mar 3, 2009 at 10:57, PJ wrote: > >> forgot to add: >> What's the difference between back ticks or quotes and regular single >> quotes? >> How does one enter back quotes from the keyboard? >> > > Welcome to the Internet! > > The first place you should

Re: [PHP] whoami explanation

2009-03-03 Thread Robert Cummings
On Tue, 2009-03-03 at 11:03 -0500, PJ wrote: > > ok, ok, I found it but you guys are assuming that this is something > everybody should know... hell, I've been tinkering with programming and > unix etc. for many, many years and this is the first time I ran into > back quotes. > SORRY! You're not t

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Per Jessen wrote: > PJ wrote: > > >> forgot to add: >> What's the difference between back ticks or quotes and regular single >> quotes? >> > > text in back ticks is executed via a shell, text in single quotes isn't. > Ok, but how does this relate to a command passed from a php Web page?

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 11:16, PJ wrote: >> > I don't think it's necessary to be sarcastic... That's okay, I'll allow it anyway. > Hate to disappoint you, but on my computer (FreeBSD 7.0) on Firefox > Google does not go directly to the php manual... it goes to some nitwit > site thinkexist.co

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 11:22, PJ wrote: >> > Ok, but how does this relate to a command passed from a php Web page? > I don't understand the processus. > I use bash on my FreeBSD and have not needed a back quote yet that I can > recall... and on WinXP? As in the email I just sent, remember to

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: > On Tue, Mar 3, 2009 at 11:22, PJ wrote: > >> Ok, but how does this relate to a command passed from a php Web page? >> I don't understand the processus. >> I use bash on my FreeBSD and have not needed a back quote yet that I can >> recall... and on WinXP? >> > > As

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 11:41, PJ wrote: > > I appreciate the input and I take the chastizing with a ton of salt. It's all in good fun and being the new guy, it's at your expense. ;-P Having thick skin means you'll stick around and probably learn a lot from the folks on this list. S

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: > On Tue, Mar 3, 2009 at 11:41, PJ wrote: > >> I appreciate the input and I take the chastizing with a ton of salt. >> > > It's all in good fun and being the new guy, it's at your expense. ;-P > > Having thick skin means you'll stick around and probably lea

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 11:59, PJ wrote: >> > :-* Umm thanks? (You do know that's the emoticon to symbolize kissing, right?) -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Hosting Plans at PilotPig: Use Coupo

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: > On Tue, Mar 3, 2009 at 11:59, PJ wrote: > >> :-* >> > > Umm thanks? > > (You do know that's the emoticon to symbolize kissing, right?) > > Let's not get too personnal here... it was meant to blow a kiss of appreciation to all... ;-) I may not be gay, bu

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 12:13, PJ wrote: >> > Let's not get too personnal here... it was meant to blow a kiss of > appreciation to all... ;-) > I may not be gay, but I love my gay friends... and I do  not mean in the > way Jimmy Carter's translators goofed when he went to Poland and > announced tha

Re: [PHP] whoami explanation

2009-03-03 Thread Robert Cummings
On Tue, 2009-03-03 at 12:17 -0500, Daniel Brown wrote: > On Tue, Mar 3, 2009 at 12:13, PJ wrote: > >> > > Let's not get too personnal here... it was meant to blow a kiss of > > appreciation to all... ;-) > > I may not be gay, but I love my gay friends... and I do not mean in the > > way Jimmy Car

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 12:37, Robert Cummings wrote: > > You have an extraneous "sometimes" in the above sentence! Yeah, I was waiting for that ;-P -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Hosting Plans at

Re: [PHP] whoami explanation

2009-03-03 Thread Paul M Foster
On Tue, Mar 03, 2009 at 10:57:21AM -0500, PJ wrote: > How does one enter back quotes from the keyboard? Tell me you didn't seriously just ask that question. Paul -- Paul M. Foster -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] whoami explanation

2009-03-03 Thread Ashley Sheridan
On Tue, 2009-03-03 at 11:16 -0500, PJ wrote: > Daniel Brown wrote: > > On Tue, Mar 3, 2009 at 10:57, PJ wrote: > > > >> forgot to add: > >> What's the difference between back ticks or quotes and regular single > >> quotes? > >> How does one enter back quotes from the keyboard? > >> > > > >

RE: [PHP] whoami explanation

2009-03-03 Thread Boyd, Todd M.
> -Original Message- > From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] > Sent: Tuesday, March 03, 2009 2:07 PM > To: PJ > Cc: Daniel Brown; Per Jessen; php-general@lists.php.net > Subject: Re: [PHP] whoami explanation > > On Tue, 2009-03-03 at 11:16 -05

Re: [PHP] whoami explanation

2009-03-03 Thread Clancy
On Tue, 3 Mar 2009 11:09:48 -0500, danbr...@php.net (Daniel Brown) wrote: >On Tue, Mar 3, 2009 at 11:03, PJ wrote: >>> >> ok, ok, I found it but you guys are assuming that this is something >> everybody should know... hell, I've been tinkering with programming and >> unix etc. for many, many year

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Boyd, Todd M. wrote: >> -Original Message- >> From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] >> Sent: Tuesday, March 03, 2009 2:07 PM >> To: PJ >> Cc: Daniel Brown; Per Jessen; php-general@lists.php.net >> Subject: Re: [PHP] whoami explanati

Re: [PHP] whoami explanation

2009-03-03 Thread Daniel Brown
On Tue, Mar 3, 2009 at 18:56, PJ wrote: > > But I'm sorry I missed the fun earlier about the American foibles... > unfortunately that should go on some other list and I wish I knew which > one - one that had some smarts to it (like this one) and I'd like to > really hear what people think about "u

Re: [PHP] whoami explanation

2009-03-03 Thread Michael A. Peters
PJ wrote: Gee, thanks. So, when was I supposed to have used this alias? Hell, I can live with my ignorance. What's a POSIX system and why is it a POSIX - a language, I think I heard cd ~ brings you to your home directory. cd ~/stuff brings you to the stuff sub-directory of your home

Re: [PHP] whoami explanation

2009-03-03 Thread Michael A. Peters
Michael A. Peters wrote: With respect to value of issuing shell commands from within php - I'm sure there are some legitimate uses. I use to do it all the time but now I really try not to because it makes the php less portable. You also have to be super careful with your code so that use of

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Michael A. Peters wrote: > PJ wrote: > >>> >> Gee, thanks. So, when was I supposed to have used this alias? Hell, I >> can live with my ignorance. What's a POSIX system and why is it a POSIX >> - a language, I think I heard > > cd ~ > > brings you to your home directory. > > cd ~/stuff > > b

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: > On Tue, Mar 3, 2009 at 18:56, PJ wrote: >> But I'm sorry I missed the fun earlier about the American foibles... >> unfortunately that should go on some other list and I wish I knew which >> one - one that had some smarts to it (like this one) and I'd like to >> really hear wh

Re: [PHP] whoami explanation

2009-03-04 Thread Peter Ford
PJ wrote: > Per Jessen wrote: >> PJ wrote: >> >> >>> forgot to add: >>> What's the difference between back ticks or quotes and regular single >>> quotes? >>> >> text in back ticks is executed via a shell, text in single quotes isn't. >> > Ok, but how does this relate to a command passed

Re: [PHP] whoami explanation

2009-03-04 Thread Michael A. Peters
Peter Ford wrote: PJ wrote: Per Jessen wrote: PJ wrote: forgot to add: What's the difference between back ticks or quotes and regular single quotes? text in back ticks is executed via a shell, text in single quotes isn't. Ok, but how does this relate to a command passed from a ph

RE: [PHP] whoami explanation

2009-03-04 Thread Boyd, Todd M.
> -Original Message- > From: PJ [mailto:af.gour...@videotron.ca] > Sent: Tuesday, March 03, 2009 5:56 PM > To: Boyd, Todd M. > Cc: php-general@lists.php.net > Subject: Re: [PHP] whoami explanation > > Boyd, Todd M. wrote: > >> -Original Messag

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
[Inhales] On Wed, Mar 4, 2009 at 01:01, PJ wrote: > Ok. You asked for it... I have to rant a bit get this off my chest as it > has been bugging me for a while and this is not directed at anyone in > particular. I'm noting "for a while here" > I do not appreciate it when there is

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Daniel Brown wrote: > [Inhales] > > On Wed, Mar 4, 2009 at 01:01, PJ wrote: > >> Ok. You asked for it... I have to rant a bit get this off my chest as it >> has been bugging me for a while and this is not directed at anyone in >> particular. >> > > I'm noting "for a while here.

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 10:42, PJ wrote: > Right on.  Good comments. > No offense taken and none intended. > I am enoying the list and will continue to participate, if i may. > I have learned a great deal already and really do appreciate the help. So you mentioned your involvement in televisio

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
> Daniel Brown wrote: > > The way I see it, life is little more than a game played in a > > dream; win or lose, it's still going to end, so enjoy it while it > > lasts. Speak for yourself THERE CAN BE ONLY ONE!!! *chops off Dan's head* *runs away while lightning bolts strike him over an

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 10:52, Robert Cummings wrote: > > *runs away while lightning bolts strike him over and over* Would the sound to accompany this mental image be one of a Daffy Duck or Woody Woodpecker nature? -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ ||

RE: [PHP] whoami explanation

2009-03-04 Thread Boyd, Todd M.
> -Original Message- > From: paras...@gmail.com [mailto:paras...@gmail.com] On Behalf Of > Daniel Brown > Sent: Wednesday, March 04, 2009 10:16 AM > To: Robert Cummings > Cc: PJ; Boyd, Todd M.; php-general@lists.php.net > Subject: Re: [PHP] whoami explanation > >

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 11:15 -0500, Daniel Brown wrote: > On Wed, Mar 4, 2009 at 10:52, Robert Cummings wrote: > > > > *runs away while lightning bolts strike him over and over* > > Would the sound to accompany this mental image be one of a Daffy > Duck or Woody Woodpecker nature? I'd go with

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 11:20, Boyd, Todd M. wrote: > > I think it's a Queen song, actually... Mama-mia. -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Hosting Plans at PilotPig: Use Coupon DOW1 -- PHP General M

Re: [PHP] whoami explanation

2009-03-04 Thread Stuart
Cracking response Dan, and I agree fully with most of it. A while back I was a far more active contributor to the PHP lists than I am now (promotion == more responsibility == less spare time) and the reason I do it is because it never seems like work - it's fun!! But I feel I must correct you on o

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 11:31, Stuart wrote: > > The results returned by Google are not constant. They vary based on your > location, which domain you're using, which index instance you hit and a > number of other things, most of which are not public. It is more than > possible that PJ did get diff

Re: [PHP] whoami explanation

2009-03-04 Thread Stuart
2009/3/4 Daniel Brown > On Wed, Mar 4, 2009 at 11:31, Stuart wrote: > > > > The results returned by Google are not constant. They vary based on your > > location, which domain you're using, which index instance you hit and a > > number of other things, most of which are not public. It is more th

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 12:28, Stuart wrote: > > As I understand it, and like you I certainly don't claim to know for sure, > clusters within the Google infrastructure sometimes fall behind with their > copy of the the index which can mean different results even between page > reloads. Never seen t

Re: [PHP] whoami explanation

2009-03-04 Thread Thodoris
This really needs some explanation I found this on the web: with it there was the comment "the direction of those single-quotes matters" (WHY ?) and it works But this (_*FROM THE PHP MANUAL***_ * - exec()* executes the given /command/ ) does not, COPIED AND PASTED: | | What is going on he

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Daniel Brown wrote: > On Wed, Mar 4, 2009 at 10:42, PJ wrote: > >> Right on. Good comments. >> No offense taken and none intended. >> I am enoying the list and will continue to participate, if i may. >> I have learned a great deal already and really do appreciate the help. >> > > So y

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Stuart wrote: > Cracking response Dan, and I agree fully with most of it. A while back > I was a far more active contributor to the PHP lists than I am now > (promotion == more responsibility == less spare time) and the reason I > do it is because it never seems like work - it's fun!! > > But I fee

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
PJ wrote: > Daniel Brown wrote: >> On Wed, Mar 4, 2009 at 10:42, PJ wrote: >> >>> Right on. Good comments. >>> No offense taken and none intended. >>> I am enoying the list and will continue to participate, if i may. >>> I have learned a great deal already and really do appreciate the help. >>

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 13:31, PJ wrote: > am I vindicated  ;-) Eh. Whether or not it is true in practice, in theory it certainly sounds plausible to have varying results. However, your argument, verbatim, wasn't entirely with merit. ;-P All in all, sure. At the least, it shows th

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
Thodoris wrote: > Didn't have the time to read the whole thread. Sorry for being so lame. Obviously, or you would have known that this thread has very little if anything to do with whoami! :-) -- Thanks! -Shawn http://www.spidean.com -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] whoami explanation

2009-03-04 Thread Stuart
2009/3/4 PJ > Stuart wrote: > > Cracking response Dan, and I agree fully with most of it. A while back > > I was a far more active contributor to the PHP lists than I am now > > (promotion == more responsibility == less spare time) and the reason I > > do it is because it never seems like work -

Re: [PHP] whoami explanation

2009-03-04 Thread Thodoris
Thodoris wrote: Didn't have the time to read the whole thread. Sorry for being so lame. Obviously, or you would have known that this thread has very little if anything to do with whoami! :-) Indeed nonetheless it will be something useful for the archives (at least I think that).

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote: > Secondly, if you are getting a different response from Google, > Sally, then you didn't use the same input I'd beg to differ. It's well known that Google gives out different results based on geographical location and previous search history

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 15:03, Ashley Sheridan wrote: > On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote: >> Secondly, if you are getting a different response from Google, >> Sally, then you didn't use the same input > > I'd beg to differ. It's well known that Google gives out different > resu

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 15:02 -0500, Daniel Brown wrote: > On Wed, Mar 4, 2009 at 15:03, Ashley Sheridan > wrote: > > On Wed, 2009-03-04 at 10:23 -0500, Daniel Brown wrote: > >> Secondly, if you are getting a different response from Google, > >> Sally, then you didn't use the same input > > > > I'd

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 15:07, Ashley Sheridan wrote: >> > Yeah, been crazily busy with both my regular job and freelance stuff. I > think I'm booked up to Armageddon now :-/ Good for you. It means you're definitely doing something right. -- daniel.br...@parasane.net || danbr...@php.net ht

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Shawn McKenzie wrote: > PJ wrote: > >> Daniel Brown wrote: >> >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote: >>> >>> Right on. Good comments. No offense taken and none intended. I am enoying the list and will continue to participate, if i may. I have learned a g

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 16:16 -0500, PJ wrote: > Shawn McKenzie wrote: > > PJ wrote: > > > >> Daniel Brown wrote: > >> > >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote: > >>> > >>> > Right on. Good comments. > No offense taken and none intended. > I am enoying the list

Re: [PHP] whoami explanation

2009-03-04 Thread Chris
for FILE in $LIST do cp $FILE $FILE.bak done which works as long as you can guarantee that none your file names contain spaces ... ;) Which he already said: Note that in both of these examples, filenames with spaces in them will blow the whole thing up :( ;) -- Postgresql & php

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
PJ wrote: > Shawn McKenzie wrote: >> PJ wrote: >> >>> Daniel Brown wrote: >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote: > Right on. Good comments. > No offense taken and none intended. > I am enoying the list and will continue to participate, if i may. >

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > PJ wrote: > > Shawn McKenzie wrote: > >> PJ wrote: > >> > >>> Daniel Brown wrote: > >>> > On Wed, Mar 4, 2009 at 10:42, PJ wrote: > > > > Right on. Good comments. > > No offense taken and none inte

Re: [PHP] whoami explanation

2009-03-04 Thread Paul M Foster
On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote: > Shawn McKenzie wrote: > > PJ wrote: > > > >> Daniel Brown wrote: > >> > >>> On Wed, Mar 4, 2009 at 10:42, PJ wrote: > >>> > Ooooh, boy now this is really serious... >:o > I think your ignorance will be forgiven, maybe! And this is not m

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Robert Cummings wrote: > On Wed, 2009-03-04 at 16:16 -0500, PJ wrote: > >> Shawn McKenzie wrote: >> >>> PJ wrote: >>> >>> Daniel Brown wrote: > On Wed, Mar 4, 2009 at 10:42, PJ wrote: > > > >> Right on. Good c

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Shawn McKenzie wrote: > PJ wrote: > >> Shawn McKenzie wrote: >> >>> PJ wrote: >>> >>> Daniel Brown wrote: > On Wed, Mar 4, 2009 at 10:42, PJ wrote: > > > >> Right on. Good comments. >> No offense taken and

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > > Whatever you do, please, please, please, for the love of all that is > holy, please, do not vilify potatoes! ...or the Irish :-) Potatoes are best served sliced into sticks, pan-fried, covered in cheese curds, and then finally doused in

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Ashley Sheridan wrote: > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > >> PJ wrote: >> >>> Shawn McKenzie wrote: >>> PJ wrote: > Daniel Brown wrote: > > >> On Wed, Mar 4, 2009 at 10:42, PJ wrote: >> >

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Paul M Foster wrote: > On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote: > > >> Shawn McKenzie wrote: >> >>> PJ wrote: >>> >>> Daniel Brown wrote: > On Wed, Mar 4, 2009 at 10:42, PJ wrote: > > > > > > >> Ooooh, boy now this is

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Robert Cummings wrote: > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > >> Whatever you do, please, please, please, for the love of all that is >> holy, please, do not vilify potatoes! ...or the Irish :-) >> > > Potatoes are best served sliced into sticks, pan-fried, covered in

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 17:43 -0500, PJ wrote: > Robert Cummings wrote: > > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > > > >> Whatever you do, please, please, please, for the love of all that is > >> holy, please, do not vilify potatoes! ...or the Irish :-) > >> > > > > Potat

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote: > > Whilst we're on the subject, what about cows, pigs and sheep, which are > the biggest contributors to global warming through their, erm, gases? > Global warming is a huge problem, so I call upon all vegetarians to eat > as much meat as p

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Robert Cummings wrote: > On Wed, 2009-03-04 at 17:43 -0500, PJ wrote: > >> Robert Cummings wrote: >> >>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: >>> >>> Whatever you do, please, please, please, for the love of all that is holy, please, do not vilify pota

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote: > On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote: > > > > Whilst we're on the subject, what about cows, pigs and sheep, which are > > the biggest contributors to global warming through their, erm, gases? > > Global warming is a hug

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 17:40 -0500, PJ wrote: > Paul M Foster wrote: > > On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote: > > > > > >> Shawn McKenzie wrote: > >> > >>> PJ wrote: > >>> > >>> > Daniel Brown wrote: > > > > On Wed, Mar 4, 2009 at 10:42, PJ

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 23:02 +, Ashley Sheridan wrote: > On Wed, 2009-03-04 at 17:40 -0500, PJ wrote: > > Yuck. But then there are people who are more resistant to crap than > > cockroaches. But we will not outlast them! > > You might try to get informed... > > Unfortunately, Americans are a sad

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 18:16 -0500, PJ wrote: > Ashley Sheridan wrote: > > On Wed, 2009-03-04 at 17:40 -0500, PJ wrote: > > > >> Paul M Foster wrote: > >> > >>> On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote: > >>> > >>> > >>> > Shawn McKenzie wrote: > >

Re: [PHP] whoami explanation

2009-03-04 Thread Ashley Sheridan
On Wed, 2009-03-04 at 18:14 -0500, PJ wrote: > Ashley Sheridan wrote: > > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote: > > > >> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote: > >> > >>> Whilst we're on the subject, what about cows, pigs and sheep, which are > >>> the

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Ashley Sheridan wrote: > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote: > >> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote: >> >>> Whilst we're on the subject, what about cows, pigs and sheep, which are >>> the biggest contributors to global warming through their, erm,

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Ashley Sheridan wrote: > On Wed, 2009-03-04 at 17:40 -0500, PJ wrote: > >> Paul M Foster wrote: >> >>> On Wed, Mar 04, 2009 at 04:16:40PM -0500, PJ wrote: >>> >>> >>> Shawn McKenzie wrote: > PJ wrote: > > > >> Dani

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
Robert Cummings wrote: > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: >> Whatever you do, please, please, please, for the love of all that is >> holy, please, do not vilify potatoes! ...or the Irish :-) > > Potatoes are best served sliced into sticks, pan-fried, covered in > cheese cu

Re: [PHP] whoami explanation

2009-03-04 Thread Robert Cummings
On Wed, 2009-03-04 at 23:21 +, Ashley Sheridan wrote: > On Wed, 2009-03-04 at 18:14 -0500, PJ wrote: > > Ashley Sheridan wrote: > > > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote: > > > > > >> On Wed, 2009-03-04 at 21:55 +, Ashley Sheridan wrote: > > >> > > >>> Whilst we

Re: [PHP] whoami explanation

2009-03-04 Thread PJ
Shawn McKenzie wrote: > Robert Cummings wrote: > >> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: >> >>> Whatever you do, please, please, please, for the love of all that is >>> holy, please, do not vilify potatoes! ...or the Irish :-) >>> >> Potatoes are best served slic

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
PJ wrote: > Shawn McKenzie wrote: >> Robert Cummings wrote: >> >>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: >>> Whatever you do, please, please, please, for the love of all that is holy, please, do not vilify potatoes! ...or the Irish :-) >>> Potatoes

Re: [PHP] whoami explanation

2009-03-04 Thread Shawn McKenzie
Shawn McKenzie wrote: > PJ wrote: >> Shawn McKenzie wrote: >>> Robert Cummings wrote: >>> On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > Whatever you do, please, please, please, for the love of all that is > holy, please, do not vilify potatoes! ...or the Iris

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 20:28, Shawn McKenzie wrote: > > Well, the ground beef is actually tartar and it goes without saying that > it would be topped with foie gras and grape chutney with caviar on the side. with gold-plated platinum flakes and diamond-dust salt. -- daniel.br...@paras

Re: [PHP] whoami explanation

2009-03-04 Thread VamVan
On Wed, Mar 4, 2009 at 7:35 PM, Daniel Brown wrote: > On Wed, Mar 4, 2009 at 20:28, Shawn McKenzie wrote: > > > > Well, the ground beef is actually tartar and it goes without saying that > > it would be topped with foie gras and grape chutney with caviar on the > side. > > with gold-pla

Re: [PHP] whoami explanation

2009-03-04 Thread Daniel Brown
On Wed, Mar 4, 2009 at 22:46, VamVan wrote: > > Hey Guys I have  Question. I just noticed that once the whoami thread > reached 100 posts it automatically created another thread. Is this intended? > > Can a discussion be only 100 post's long?? > > Just out of curiosity :) In Gmail, yes. That

Re: [PHP] whoami explanation

2009-03-04 Thread VamVan
On Wed, Mar 4, 2009 at 7:50 PM, Daniel Brown wrote: > On Wed, Mar 4, 2009 at 22:46, VamVan wrote: > > > > Hey Guys I have Question. I just noticed that once the whoami thread > > reached 100 posts it automatically created another thread. Is this > intended? > > > > Can a discussion be only 100

Re: [PHP] whoami explanation

2009-03-05 Thread Ashley Sheridan
On Wed, 2009-03-04 at 19:54 -0500, Robert Cummings wrote: > On Wed, 2009-03-04 at 23:21 +, Ashley Sheridan wrote: > > On Wed, 2009-03-04 at 18:14 -0500, PJ wrote: > > > Ashley Sheridan wrote: > > > > On Wed, 2009-03-04 at 17:46 -0500, Robert Cummings wrote: > > > > > > > >> On Wed, 2009-03-0

Re: [PHP] whoami explanation

2009-03-05 Thread Robert Cummings
On Thu, 2009-03-05 at 08:21 +, Ashley Sheridan wrote: > On Wed, 2009-03-04 at 19:54 -0500, Robert Cummings wrote: > > On Wed, 2009-03-04 at 23:21 +, Ashley Sheridan wrote: > > > On Wed, 2009-03-04 at 18:14 -0500, PJ wrote: > > > > Ashley Sheridan wrote: > > > > > On Wed, 2009-03-04 at 17:46

Re: [PHP] whoami explanation

2009-03-05 Thread PJ
Shawn McKenzie wrote: > Shawn McKenzie wrote: > >> PJ wrote: >> >>> Shawn McKenzie wrote: >>> Robert Cummings wrote: > On Wed, 2009-03-04 at 15:48 -0600, Shawn McKenzie wrote: > > >> Whatever you do, please, please, please, f

Re: [PHP] whoami explanation

2009-03-10 Thread Paul M Foster
On Tue, Mar 10, 2009 at 12:00:16PM -0300, Eduardo wrote: > Potatoes: The Instant Recipe > RE: Robert Cummings > > > Put a washed non peeled medium size potato per person over a oven-plate and > take it to the oven. > > When almost done, slice longitudinally and add a piece of hard cheese. > >

Re: [PHP] whoami explanation

2009-03-10 Thread 9el
--- Use FreeOpenSourceSoftwares, Stop piracy, Let the developers live. Get a Free CD of Ubuntu mailed to your door without any cost. Visit : www.ubuntu.com -- On

Re: [PHP] whoami explanation

2009-03-10 Thread Daniel Brown
On Tue, Mar 10, 2009 at 15:31, 9el wrote: > > I'm trying to find whoami here :D You mean to say: "I'm trying to find whyami here." ;-P -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Hosting Plans at PilotPi

Re: [PHP] whoami explanation

2009-03-10 Thread Andrew Ballard
On Tue, Mar 10, 2009 at 3:31 PM, 9el wrote: > --- > Use FreeOpenSourceSoftwares, Stop piracy, Let the developers live. Get > a Free CD of Ubuntu mailed to your door without any cost. Visit : > www.ubuntu.com >

Re: [PHP] whoami explanation

2009-03-10 Thread Michael A. Peters
Daniel Brown wrote: On Tue, Mar 10, 2009 at 15:31, 9el wrote: I'm trying to find whoami here :D You mean to say: "I'm trying to find whyami here." I think I am here therefore I why? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

  1   2   >