[PHP] Re: Check Variable with true or not

2008-09-29 Thread Maciek Sokolewicz
Carlos Medina wrote: Hi @ all: Question: what is quickly? if( true == isset( $var ) ){} or if( isset( $var ) ){} Can somebody explain ( not think or believe ), what happend on the Zend Engine when the first or the second code will be use? Regards Carlos The _exact_ same thing happens.

[PHP] Re: Check Variable with true or not

2008-09-29 Thread Nathan Rixham
Maciek Sokolewicz wrote: Carlos Medina wrote: Hi @ all: Question: what is quickly? if( true == isset( $var ) ){} or if( isset( $var ) ){} Can somebody explain ( not think or believe ), what happend on the Zend Engine when the first or the second code will be use? Regards Carlos The

[PHP] Static method variable

2008-09-18 Thread Christoph Boget
Perhaps I'm misunderstanding what a static method variable is supposed to do. I thought the value would be static for an class' instance but it appears it is static across all instances of the class. Consider: class StaticTest { public function __construct() { } public function test(

Re: [PHP] Static method variable

2008-09-18 Thread Thijs Lensselink
Quoting Christoph Boget [EMAIL PROTECTED]: Perhaps I'm misunderstanding what a static method variable is supposed to do. I thought the value would be static for an class' instance but it appears it is static across all instances of the class. Consider: class StaticTest { public function

Re: [PHP] Static method variable

2008-09-18 Thread Micah Gersten
If you're looking for a persistent variable in one class instance, then you need a member variable. If you want it persistent across all class instances, you want a static variable. Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com Christoph Boget wrote:

Re: [PHP] Static method variable

2008-09-18 Thread Jochem Maas
Christoph Boget schreef: Perhaps I'm misunderstanding what a static method variable is supposed to do. I thought the value would be static for an class' instance but it appears it is static across all instances of the class. Consider: class StaticTest { public function __construct() { }

[PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jay Moore
Jody Cleveland wrote: Hello, I've got a website here: http://beta.menashalibrary.org/about On every page, i've got a search box at the top. This search box searches the library's web catalog. The problem is, when someone searches, it takes them away from the site. What I'd like to do is take

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
Frames?! As a fellow Wisconsinite and a web developer, I'm going to have to ask you to leave the state. Minnesota can have you. :P Jay PS - No, but seriously, frames?!?! There's nothing wrong with a Frame every once in a while! Granted they aren't used much anymore, but sometimes

RE: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Boyd, Todd M.
-Original Message- From: Dan Shirah [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 9:20 AM To: Jay Moore Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Passing variable to a page in a frameset Frames?! As a fellow Wisconsinite and a web developer, I'm going

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 9:20 AM, Dan Shirah wrote: Frames?! As a fellow Wisconsinite and a web developer, I'm going to have to ask you to leave the state. Minnesota can have you. :P Jay PS - No, but seriously, frames?!?! There's nothing wrong with a Frame every once in a while!

RE: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Warren Vail
-general@lists.php.net Subject: [PHP] Re: Passing variable to a page in a frameset Jody Cleveland wrote: Hello, I've got a website here: http://beta.menashalibrary.org/about On every page, i've got a search box at the top. This search box searches the library's web catalog. The problem

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 1:22 PM, Warren Vail wrote: Actually you may want to check back with basic html at the target parameter on your search form statement. HTH, Warren Vail Vail Systems Technology [EMAIL PROTECTED] Target won't work for me because the originating page with the search box

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Stut
On 15 Aug 2008, at 19:39, Jody Cleveland wrote: On Aug 15, 2008, at 1:22 PM, Warren Vail wrote: Actually you may want to check back with basic html at the target parameter on your search form statement. HTH, Warren Vail Vail Systems Technology [EMAIL PROTECTED] Target won't work for me

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 1:46 PM, Stut wrote: On 15 Aug 2008, at 19:39, Jody Cleveland wrote: On Aug 15, 2008, at 1:22 PM, Warren Vail wrote: Actually you may want to check back with basic html at the target parameter on your search form statement. HTH, Warren Vail Vail Systems Technology

RE: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Warren Vail
a target, if the form is outside the frameset, it will replace the entire frameset, exactly what you describe. Warren -Original Message- From: Jody Cleveland [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2008 11:40 AM To: php-general@lists.php.net Subject: Re: [PHP] Re: Passing

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Stut
On 15 Aug 2008, at 19:50, Jody Cleveland wrote: On Aug 15, 2008, at 1:46 PM, Stut wrote: On 15 Aug 2008, at 19:39, Jody Cleveland wrote: On Aug 15, 2008, at 1:22 PM, Warren Vail wrote: Actually you may want to check back with basic html at the target parameter on your search form statement.

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
That is exactly what I want. I apologize for the confusion. I was having a hard time trying to put what I was trying to do in words. But, yes, your second paragraph is exactly what I want to do. My knowledge of PHP is very limited, and I've tried to search for something that will do this, but

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 2:05 PM, Stut wrote: On 15 Aug 2008, at 19:50, Jody Cleveland wrote: On Aug 15, 2008, at 1:46 PM, Stut wrote: On 15 Aug 2008, at 19:39, Jody Cleveland wrote: On Aug 15, 2008, at 1:22 PM, Warren Vail wrote: Actually you may want to check back with basic html at the

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Stut
On 15 Aug 2008, at 20:21, Jody Cleveland wrote: I work for a consortium of 30 libraries. Each library has their own website, but they all share the same web catalog. On each library's website there is a search box to search the catalog, which is on a completely different server from the

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 2:27 PM, Stut wrote: On 15 Aug 2008, at 20:21, Jody Cleveland wrote: I work for a consortium of 30 libraries. Each library has their own website, but they all share the same web catalog. On each library's website there is a search box to search the catalog, which is on

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
I work for a consortium of 30 libraries. Each library has their own website, but they all share the same web catalog. On each library's website there is a search box to search the catalog, which is on a completely different server from the websites. We've been finding that once people use

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Stut
On 15 Aug 2008, at 20:34, Jody Cleveland wrote: On Aug 15, 2008, at 2:27 PM, Stut wrote: On 15 Aug 2008, at 20:21, Jody Cleveland wrote: I work for a consortium of 30 libraries. Each library has their own website, but they all share the same web catalog. On each library's website there

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
is the website ?name=joe is the value being passed by GET To put this value into a PHP variable you would simply do: ?php $name = $_GET['name']; ? http://www.google.com/search?hl=enq=encrypt+javascript

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
://www.mysite.com?name=joe http://www.mysite.com/?name=joe www.mysite.com is the website ?name=joe is the value being passed by GET To put this value into a PHP variable you would simply do: ?php $name = $_GET['name']; ? Although, since you have no control over the actual search page

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
There you go! Entering in the search criteria pulls up the search in a new window and automatically pulls results based on your search. Then I can just close the window to return to where I was on your site. I think that is simple and easy to use. And I'm sure not much of a headache for you!

Re: [PHP] Re: Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 2:58 PM, Dan Shirah wrote: There you go! Entering in the search criteria pulls up the search in a new window and automatically pulls results based on your search. Then I can just close the window to return to where I was on your site. I think that is simple and

[PHP] Re: Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-27 Thread Michelle Konzack
Am 2008-06-24 15:10:49, schrieb Per Jessen: Dotan Cohen wrote: What is the English/French name of the French non-Frenchmen reserve army? They are very well respected. The French Foreign Legion?? I wouldn't call that a reserve army. :-) We are always the first ones... Worldwide! We can

[PHP] Re: Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-27 Thread Michelle Konzack
Am 2008-06-23 21:17:13, schrieb Dotan Cohen: 2008/6/22 Michelle Konzack [EMAIL PROTECTED]: I know at least on Jew, which was 1 1/2 years in the french army for his service national and then 5 years in Israel. That was very likely not compulsory service. Especially if he served years.

Re: [PHP] Re: Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-27 Thread Dotan Cohen
2008/6/25 Michelle Konzack [EMAIL PROTECTED]: Am 2008-06-23 21:17:13, schrieb Dotan Cohen: 2008/6/22 Michelle Konzack [EMAIL PROTECTED]: I know at least on Jew, which was 1 1/2 years in the french army for his service national and then 5 years in Israel. That was very likely not

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-24 Thread Sancar Saran
I hate to say this, but I am expendable. If that's what it takes to keep my country and my family safe, myself and many other men would quickly rise to take the fire. /salute -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-24 Thread Per Jessen
Dotan Cohen wrote: What is the English/French name of the French non-Frenchmen reserve army? They are very well respected. The French Foreign Legion?? I wouldn't call that a reserve army. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-24 Thread Dotan Cohen
2008/6/24 Per Jessen [EMAIL PROTECTED]: What is the English/French name of the French non-Frenchmen reserve army? They are very well respected. The French Foreign Legion?? I wouldn't call that a reserve army. Yes, that's it, thanks. Reserve might not have been the correct term, but I know

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2008 12:23 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable ---8--- There's no flame-war brewing here at all, but whether

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/23 Boyd, Todd M. [EMAIL PROTECTED]: THANK YOU. (Re: mixed opinions on the armed forces.) All we need now is for people to start debating religion. Actually, I thought that the list has been, up until now, very responsible and have kept politics out of it. People have mentioned which

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 10:59 AM To: php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable 2008/6/23 Boyd, Todd M. [EMAIL PROTECTED]: THANK YOU. (Re: mixed

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/23 Boyd, Todd M. [EMAIL PROTECTED]: Regardless, let's turn this back around: ?php echo Hello, politically-heterogenous world!; ? To all those who insist that _all_ programs have bugs, behold this wonder and repent! Dotan Cohen http://what-is-what.com http://gibberish.co.il

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 11:05 AM, Boyd, Todd M. [EMAIL PROTECTED] wrote: THANK YOU. (Re: mixed opinions on the armed forces.) All we need now is for people to start debating religion. You missed this about a year or two ago. Check the archives. -- /Daniel P. Brown Dedicated Servers -

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 11:23 AM To: Boyd, Todd M. Cc: Per Jessen; php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable On Mon, Jun 23, 2008 at 11:05 AM, Boyd

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 12:04 PM, Boyd, Todd M. [EMAIL PROTECTED] wrote: You are right. This list, above many others I have subscribed to in the past, has done a very good job about keeping it PHP-related and not branching off into a political flame war (or even a polite political

RE: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 11:42 AM To: Boyd, Todd M. Cc: Dotan Cohen; php-general@lists.php.net Subject: Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable On Mon, Jun 23, 2008 at 12:04 PM

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
: Undefined variable: php in /home/obd2code/public_html/g.php on line 3 Notice: Use of undefined constant subscriber - assumed 'subscriber' in /home/obd2code/public_html/g.php on line 3 Warning: Invalid argument supplied for foreach() in /home/obd2code/public_html/g.php on line 3. (In actuality

[PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Michelle Konzack
Am 2008-06-21 19:45:32, schrieb Dotan Cohen: In my country, those who have served in a foreign army are exempt from serving here. Realy? I know at least on Jew, which was 1 1/2 years in the french army for his service national and then 5 years in Israel. Thanks, Greetings and nice Day/Evening

[PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Michelle Konzack
Am 2008-06-21 20:52:22, schrieb Dotan Cohen: While I won't confirm nor deny my opinion of your statement, tell me, in your opinion how much does training matter? And dedication to the The problem is, that the training starts in the brain an not with muscles. A thing most peoples do not

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use an underscore [ _ ].) IHateUnderscoresInVariableNames! Dotan Cohen http://what-is-what.com http://gibberish.co.il

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Robert Cummings
On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use an underscore [ _ ].) IHateUnderscoresInVariableNames! iHateCapitalizedFirstLetterInVariableNames! ;)

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Jason Pruim
On Jun 23, 2008, at 1:23 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use an underscore [ _ ].) IHateUnderscoresInVariableNames!

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Robert Cummings
On Mon, 2008-06-23 at 13:28 -0400, Jason Pruim wrote: On Jun 23, 2008, at 1:23 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Jason Pruim
On Jun 23, 2008, at 1:33 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 13:28 -0400, Jason Pruim wrote: On Jun 23, 2008, at 1:23 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Robert Cummings
On Mon, 2008-06-23 at 13:37 -0400, Jason Pruim wrote: On Jun 23, 2008, at 1:33 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 13:28 -0400, Jason Pruim wrote: On Jun 23, 2008, at 1:23 PM, Robert Cummings wrote: On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread tedd
At 8:19 PM +0300 6/23/08, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use an underscore [ _ ].) IHateUnderscoresInVariableNames! Dotan Cohen When I can't describe the variable better, I

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Nitsan Bin-Nun
What wierd things have you read? I'm agreeing with Dotan, I dont know how things going these days in the Israeli army, but if you are looking at the history, it proves what Dotan said, whenever we had no technolgy, no development we were still able to strike out the enemy. I guess any of us can't

Re: Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 1:23 PM, Robert Cummings [EMAIL PROTECTED] wrote: On Mon, 2008-06-23 at 20:19 +0300, Dotan Cohen wrote: 2008/6/23 Daniel Brown [EMAIL PROTECTED]: (In actuality, you can't use dashes in a variable name. You may have meant to use an underscore [ _ ].)

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/22 Michelle Konzack [EMAIL PROTECTED]: Am 2008-06-21 19:45:32, schrieb Dotan Cohen: In my country, those who have served in a foreign army are exempt from serving here. Realy? I know at least on Jew, which was 1 1/2 years in the french army for his service national and then 5 years

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/22 Michelle Konzack [EMAIL PROTECTED]: Am 2008-06-21 20:52:22, schrieb Dotan Cohen: While I won't confirm nor deny my opinion of your statement, tell me, in your opinion how much does training matter? And dedication to the The problem is, that the training starts in the brain an

RE: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
---8--- lotsa snip I call you Israelien camerads @army Kanonenfutter. I do not know French nor German, so I can only guess that means cannon snacks? Cannon fodder is an informal term for military personnel who are regarded or treated as expendable in the face of enemy fire. The term is

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/23 Boyd, Todd M. [EMAIL PROTECTED]: I do not know French nor German, so I can only guess that means cannon snacks? Cannon fodder is an informal term for military personnel who are regarded or treated as expendable in the face of enemy fire. The term is generally used in situations

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Shawn McKenzie
Jay Blanchard wrote: [snip] www.goarmy.com http://www.gocoastguard.com/ [/snip] http://www.airforce.com/ Army, 1990-1995, crypto-ranger! -shawn (formerly Shawn) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 1:49 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable ---8--- snip Shamelessly lifted that from

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Dotan Cohen
2008/6/24 Boyd, Todd M. [EMAIL PROTECTED]: I am not familiar with the game, sorry. Don't be sorry... play it for FREE! :) http://www.games4win.com/games/cannon-fodder/ Although it seems to install fine in the latest (1.0!) Wine, the game is unplayable. The screen just flashes. I'll wait

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 5:41 PM, Shawn McKenzie [EMAIL PROTECTED] wrote: Army, 1990-1995, crypto-ranger! 96 Bravo? That was the alternative MOS I was considering upon enlisting in the Army a few years after the Coast Guard. It was between that and 68W (combat medic), and the latter

Re: [PHP] Re: Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 5:58 PM, Dotan Cohen [EMAIL PROTECTED] wrote: Although it seems to install fine in the latest (1.0!) Wine, the game is unplayable. The screen just flashes. I'll wait until games4lin comes out, I suppose. Or not. Check your video drivers. Wine 1.0 should be

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-23 Thread Shawn McKenzie
When I joined it was 29S, Field COMSEC Equipment Repairer, but in 95 just before I got out they moved it out of signal into ordnance and I think it was 35E. What is the age limit now? It doesn't matter much, I don't think I could run 2 miles in less than 8 hours now anyway. ;-) -Shawn

Re: [PHP] Re: RE: Military Service WAS [PHP] Capitalization of variable

2008-06-22 Thread Sancar Saran
On Saturday 21 June 2008 16:58:24 Michelle Konzack wrote: Merhaba Sancar, Am 2008-06-20 09:21:30, schrieb Sancar Saran: The Turkish Gendarmerie (Jandarma Genel Komutanligi) ;-) How long is the service there? 15 Months. Thanks, Greetings and nice Day/Evening Michelle Konzack

[PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Am 2008-06-19 11:45:22, schrieb Jay Blanchard: In a similar vein I believe that folks wishing to immigrate to this country should serve similarly. Hmmm, imagine you are from the old Afghanistan @army, then migratig to the USA and must serv there.. :-D Thanks, Greetings and nice

[PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Am 2008-06-19 13:12:29, schrieb Daniel Brown: Exactly. And not just a single branch, either - feel free to join any branch of the Armed Forces. For mandatory service, it should be on a one or two year term, as opposed to volunteer options of 3, 4, or 6 years. And when in there, keep in

[PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Hello Nitsan, I have Jew friends herein Strasbourg ad in Israel and they already have served and it was NOT funny. Since onn of them had a family member which has french citizenship and serverd 4 years in the french army, the Israelien one is VERY bad equiped and it lakes in all directins

[PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Am 2008-06-20 12:18:29, schrieb Dotan Cohen: Good for you, Nitsan. If you find yourself in Gdud 51 let me know. Dotan Cohen :-D Thanks, Greetings and nice Day/Evening Michelle Konzack Systemadministrator 24V Electronic Engineer Tamay Dogan Network Debian GNU/Linux

[PHP] Re: RE: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Merhaba Sancar, Am 2008-06-20 09:21:30, schrieb Sancar Saran: The Turkish Gendarmerie (Jandarma Genel Komutanligi) ;-) How long is the service there? Thanks, Greetings and nice Day/Evening Michelle Konzack Systemadministrator 24V Electronic Engineer Tamay Dogan Network

[PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Michelle Konzack
Am 2008-06-19 10:25:10, schrieb Jay Blanchard: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force 2eme Rep/Legion Etangere Français (11yars 5mont) DGSE/French regular Army

Re: [PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Dotan Cohen
2008/6/21 Michelle Konzack [EMAIL PROTECTED]: Am 2008-06-19 11:45:22, schrieb Jay Blanchard: In a similar vein I believe that folks wishing to immigrate to this country should serve similarly. Hmmm, imagine you are from the old Afghanistan @army, then migratig to the USA and must serv

Re: [PHP] Capitalization of variable

2008-06-21 Thread Shawn McKenzie
tedd wrote: At 11:41 PM -0400 6/18/08, Ron Piggott wrote: How do I make the first letter of a variable be a capital? I am using this with names. If the user types ron I want to save it as Ron. Thanks for your help. Ron Not everyone wants their name capitalized. Cheers, tedd Yeah!

Re: [PHP] Capitalization of variable

2008-06-21 Thread tedd
At 1:01 AM -0500 6/21/08, Shawn McKenzie wrote: tedd wrote: At 11:41 PM -0400 6/18/08, Ron Piggott wrote: How do I make the first letter of a variable be a capital? I am using this with names. If the user types ron I want to save it as Ron. Thanks for your help. Ron Not everyone wants

Re: [PHP] Re: Re: Military Service WAS [PHP] Capitalization of variable

2008-06-21 Thread Dotan Cohen
2008/6/21 Michelle Konzack [EMAIL PROTECTED]: I have Jew friends herein Strasbourg ad in Israel and they already have served and it was NOT funny. Since onn of them had a family member which has french citizenship and serverd 4 years in the french army, the Israelien one is VERY bad

Re: [PHP] Capitalization of variable

2008-06-21 Thread Nathan Nobbe
On Sat, Jun 21, 2008 at 1:17 PM, tedd [EMAIL PROTECTED] wrote: At 1:01 AM -0500 6/21/08, Shawn McKenzie wrote: tedd wrote: At 11:41 PM -0400 6/18/08, Ron Piggott wrote: How do I make the first letter of a variable be a capital? I am using this with names. If the user types ron I want to

Re: [PHP] RE: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Sancar Saran
On Thursday 19 June 2008 18:25:10 Jay Blanchard wrote: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force The Turkish Gendarmerie (Jandarma Genel Komutanligi) -- PHP General Mailing List

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Per Jessen
Daniel Brown wrote: I do agree, and I think it's worth another mention to the Website Team to discuss a specific OT list for those of us who would like to stray once in a while. After all, you can't spend every day speaking with the same people on here without developing some common

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Iv Ray
Per Jessen wrote: Call me .. uh no, I'm getting sick ... you guys are so completely and utterly off-topic - please take it off-line. It was obviously off-topic from the beginning,... however it felt somehow OK... - I mean, it gave the list a personal touch and every successful organization

Re: [PHP] RE: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Dotan Cohen
2008/6/19 Jay Blanchard [EMAIL PROTECTED]: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force Golani, IDF Dotan Cohen http://what-is-what.com http://gibberish.co.il

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Dotan Cohen
2008/6/19 Nitsan Bin-Nun [EMAIL PROTECTED]: Dan i'm 16 years old, currently my monthly salary (working as php freelancer) almost catching my dad's and he is living good. In 2 years from now I have to serv, probably at the battle field (I'm healthy qualified) and usualy the place where guys

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Dotan Cohen
2008/6/19 Daniel Brown [EMAIL PROTECTED]: I don't want to start any arguments or flame wars, but it's been my opinion for years that the US should require at least one year in the armed services as well. If you want freedom and privileges, you should earn them, not feel automatically

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Daniel Brown
On Fri, Jun 20, 2008 at 2:59 AM, Per Jessen [EMAIL PROTECTED] wrote: I don't know the story with the PHP lists, but if it's of any use, I'd be happy to host a PHP-OT mailing list. I had been considering the same more and more. I had a brief conversation yesterday with Philip (Olsen, from

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Per Jessen
Daniel Brown wrote: Now consider the description of the list itself: This is a really high volume general list for PHP users. A general list for PHP users. I know damn well what the spirit of it means, but by definition, it means a 'general forum for discussion offered

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread Andrew Ballard
On Thu, Jun 19, 2008 at 12:42 PM, Daniel Brown [EMAIL PROTECTED] wrote: I don't want to start any arguments or flame wars, but it's been my opinion for years that the US should require at least one year in the armed services as well. If you want freedom and privileges, you should earn

RE: [PHP] RE: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread admin
Marine Corps.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-20 Thread tedd
At 1:26 PM -0400 6/20/08, Andrew Ballard wrote: On Thu, Jun 19, 2008 at 12:42 PM, Daniel Brown [EMAIL PROTECTED] wrote: I don't want to start any arguments or flame wars, but it's been my opinion for years that the US should require at least one year in the armed services as well. If you

Re: [PHP] Capitalization of variable

2008-06-19 Thread Paul Novitski
At 6/18/2008 09:38 PM, Nathan Nobbe wrote: $streetAddr = 817 17th ST, DENVER COLORADO; echo ucwords(strtolower($streetAddr)); // 817 17th St, Denver Colorado I'd like to mention that, in practical usage, capitalizing the first letter of every word does not correctly capitalize addresses in

Re: [PHP] Capitalization of variable

2008-06-19 Thread Nathan Nobbe
On Wed, Jun 18, 2008 at 11:47 PM, Paul Novitski [EMAIL PROTECTED] wrote: At 6/18/2008 09:38 PM, Nathan Nobbe wrote: $streetAddr = 817 17th ST, DENVER COLORADO; echo ucwords(strtolower($streetAddr)); // 817 17th St, Denver Colorado I'd like to mention that, in practical usage,

Re: [PHP] Capitalization of variable

2008-06-19 Thread Jason Pruim
On Jun 19, 2008, at 3:57 AM, Nathan Nobbe wrote: On Wed, Jun 18, 2008 at 11:47 PM, Paul Novitski [EMAIL PROTECTED] wrote: At 6/18/2008 09:38 PM, Nathan Nobbe wrote: $streetAddr = 817 17th ST, DENVER COLORADO; echo ucwords(strtolower($streetAddr)); // 817 17th St, Denver Colorado I'd

Re: [PHP] Capitalization of variable

2008-06-19 Thread tedd
At 7:58 AM -0400 6/19/08, Jason Pruim wrote: pitch Or I could periodically run your list through our software for a small fee :) On the bright side though, Not only would I be able to fix the case to how you want it, Even with all those dutch names I see around me at least. But I could verify

Re: [PHP] Capitalization of variable

2008-06-19 Thread tedd
At 11:41 PM -0400 6/18/08, Ron Piggott wrote: How do I make the first letter of a variable be a capital? I am using this with names. If the user types ron I want to save it as Ron. Thanks for your help. Ron Not everyone wants their name capitalized. Cheers, tedd -- ---

Re: [PHP] Capitalization of variable

2008-06-19 Thread Jason Pruim
On Jun 19, 2008, at 9:17 AM, tedd wrote: At 7:58 AM -0400 6/19/08, Jason Pruim wrote: pitch Or I could periodically run your list through our software for a small fee :) On the bright side though, Not only would I be able to fix the case to how you want it, Even with all those dutch

Re: [PHP] Capitalization of variable

2008-06-19 Thread Daniel Brown
On Thu, Jun 19, 2008 at 9:17 AM, tedd [EMAIL PROTECTED] wrote: PS: opinion My personal feelings are that the US Postal Service and the US Military are the only parts of the US government that actually work. /opinion +1 I wonder how many of us on the list served. It's got to be

[PHP] RE: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Jay Blanchard
[snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Daniel Brown
On Thu, Jun 19, 2008 at 11:25 AM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force United States Coast Guard ARS Helicopter Rescue Swimmer (HH-60)

Re: [PHP] RE: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Dan Shirah
U.S. Air Force Air Force here also, still currently serving. Dan

[PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Jason Pruim
On Jun 19, 2008, at 11:35 AM, Daniel Brown wrote: On Thu, Jun 19, 2008 at 11:25 AM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force United States

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Wolf
Jason Pruim [EMAIL PROTECTED] wrote: On Jun 19, 2008, at 11:35 AM, Daniel Brown wrote: On Thu, Jun 19, 2008 at 11:25 AM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Nitsan Bin-Nun
Hehe, for you it is a matter of choice, In 2 years from now I will start my service duty at the combat - we have to serv - this is mandatoy in Israel. Regards, Nitsan On 19/06/2008, Jason Pruim [EMAIL PROTECTED] wrote: On Jun 19, 2008, at 11:35 AM, Daniel Brown wrote: On Thu, Jun 19, 2008

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Daniel Brown
On Thu, Jun 19, 2008 at 12:37 PM, Nitsan Bin-Nun [EMAIL PROTECTED] wrote: Hehe, for you it is a matter of choice, In 2 years from now I will start my service duty at the combat - we have to serv - this is mandatoy in Israel. I don't want to start any arguments or flame wars, but it's been

RE: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Jay Blanchard
[snip] I don't want to start any arguments or flame wars, but it's been my opinion for years that the US should require at least one year in the armed services as well. If you want freedom and privileges, you should earn them, not feel automatically entitled to them by birth. [/snip] I do

<    1   2   3   4   5   6   7   8   9   10   >