Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread Jochem Maas

Jay Blanchard wrote:

[snip]
I was working with objects, and suddenly i got this error:
*Parse error*: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in *
D:\Apache\Apache(re)\Apache2\htdocs\Include.php* on line *11*
is this like a bug in PHP or is it a valid error?
thanks in advance
[/snip]

It means that you have two colons not being used correctly


its a good thing this mailinglist is not about the practice
of medicine ;-)




http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php



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



RE: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread George Pitcher

 
  It means that you have two colons not being used correctly

 its a good thing this mailinglist is not about the practice
 of medicine ;-)

If it was, I suppose you would recommend 'colonic irrigation' then? Twice,
perhaps?

George

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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread Dan McCullough
That could get messy

On 11/10/05, George Pitcher [EMAIL PROTECTED] wrote:

  
   It means that you have two colons not being used correctly
 
  its a good thing this mailinglist is not about the practice
  of medicine ;-)
 
 If it was, I suppose you would recommend 'colonic irrigation' then? Twice,
 perhaps?

 George

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



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



RE: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread Jay Blanchard
[snip]
  
   It means that you have two colons not being used correctly
 
  its a good thing this mailinglist is not about the practice
  of medicine ;-)
 
 If it was, I suppose you would recommend 'colonic irrigation' then? Twice,
 perhaps?

That could get messy
[/snip]

Well, you see what it did to his code already.

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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread Dan McCullough
LOL coding mirrors life.

On 11/10/05, Jay Blanchard [EMAIL PROTECTED] wrote:
 [snip]
   
It means that you have two colons not being used correctly
  
   its a good thing this mailinglist is not about the practice
   of medicine ;-)
  
  If it was, I suppose you would recommend 'colonic irrigation' then? Twice,
  perhaps?
 
 That could get messy
 [/snip]

 Well, you see what it did to his code already.


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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-10 Thread Jochem Maas

Jay Blanchard wrote:

[snip]


It means that you have two colons not being used correctly


its a good thing this mailinglist is not about the practice
of medicine ;-)



If it was, I suppose you would recommend 'colonic irrigation' then? Twice,
perhaps?



That could get messy
[/snip]

Well, you see what it did to his code already.


still working on a joke that incorporates the phrase
'gonna rip you another asshole' - no luck yet :-)





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



RE: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread Jay Blanchard
[snip]
I was working with objects, and suddenly i got this error:
*Parse error*: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in *
D:\Apache\Apache(re)\Apache2\htdocs\Include.php* on line *11*
is this like a bug in PHP or is it a valid error?
thanks in advance
[/snip]

It means that you have two colons not being used correctly
http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php

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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread Curt Zirzow
On Wed, Nov 09, 2005 at 04:27:08PM -0500, Unknown Unknown wrote:
 I was working with objects, and suddenly i got this error:
 *Parse error*: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in *
 D:\Apache\Apache(re)\Apache2\htdocs\Include.php* on line *11*
 is this like a bug in PHP or is it a valid error?

It is a valid. The T_PAAMAYIM_NEKUDOTAYIM is refering to a the
double colon (::) token. You would get that error if you use it
wrong, like:

  'foo'::bar;

Btw, Paamayim Nekudotayim means double colon in hebrew.

Curt.
-- 

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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread Dan McCullough
t_paamayim_nekudotayim is Hebrew for term twice colon
I believe that its saying that you need to use the :: operator.

On 11/9/05, Unknown Unknown [EMAIL PROTECTED] wrote:
 I was working with objects, and suddenly i got this error:
 *Parse error*: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in *
 D:\Apache\Apache(re)\Apache2\htdocs\Include.php* on line *11*
 is this like a bug in PHP or is it a valid error?
 thanks in advance



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



Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread Unknown Unknown
Ah yes that fixed it, thanks


Re: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread tg-php
Yay!  Useless Trivia Time!

That big nasty word is apparently the name for ::.  Here's a PHP manual page 
explaining how it's used.  I'd recommend looking for a misuse of the :: 
operator in your code.

http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php


Enjoy!

-TG

= = = Original message = = =

I was working with objects, and suddenly i got this error:
*Parse error*: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in *
D:\Apache\Apache(re)\Apache2\htdocs\Include.php* on line *11*
is this like a bug in PHP or is it a valid error?
thanks in advance


___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

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



RE: [PHP] T_PAAMAYIM_NEKUDOTAYIM

2005-11-09 Thread Jim Moseby
 
 Btw, Paamayim Nekudotayim means double colon in hebrew.
 

I suppose it would be an insult of the highest order to call a Hebrew man
and his brother Paamayim Nekudotayim.

JM

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