Re: [PHP] [suspicious - maybe spam] Re: [suspicious - maybe spam] [PHP] Simple question: How to declare Vars in PHP? (I know it's not necessary, but I still want to know)

2005-05-05 Thread Rasmus Lerdorf
James Williams wrote: No You don't declare variables in PHP. You just start using them. Perhaps you mean assign? Since your example of var = variableName; is actually an assignment in Javascript. In PHP you simply do: $one_var = $another_var; -Rasmus You are however, when dealing

Re: [PHP] [suspicious - maybe spam] Re: [suspicious - maybe spam] [PHP] Simple question: How to declare Vars in PHP? (I know it's not necessary, but I still want to know)

2005-05-04 Thread James Williams
No You don't declare variables in PHP. You just start using them. Perhaps you mean assign? Since your example of var = variableName; is actually an assignment in Javascript. In PHP you simply do: $one_var = $another_var; -Rasmus You are however, when dealing with OOP

[suspicious - maybe spam] [PHP] [suspicious - maybe spam] Re: [PHP] [suspicious - maybe spam] URL encoding in XSL - Yes, a PHP question

2005-04-23 Thread Christian Stocker
On 4/23/05, Brian Dunning [EMAIL PROTECTED] wrote: All the resources I've found on the web for URL encoding values within an XSL stylesheet are either .NET or Java, so I'm looking for some help with how to do this using PHP's special flavor of XML/XSL. Within the XSL doc, I've got:

RE: [PHP] suspicious - maybe spam

2005-03-09 Thread Christo van Rooyen
Same here Christo van Rooyen -Original Message- From: Chris W. Parker [mailto:[EMAIL PROTECTED] Sent: 08 March 2005 19:58 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Kevin; PHP General Mail List Subject: RE: [PHP] suspicious - maybe spam Richard Lynch mailto:[EMAIL PROTECTED

[PHP] ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread tg-php
] Sent: 08 March 2005 19:58 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Kevin; PHP General Mail List Subject: RE: [PHP] suspicious - maybe spam Richard Lynch mailto:[EMAIL PROTECTED] on Tuesday, March 08, 2005 9:54 AM said: Don't feel too bad. Every few weeks, I get an automated email from

Re: [PHP] ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread Rob Tanner
To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Kevin; PHP General Mail List Subject: RE: [PHP] suspicious - maybe spam Richard Lynch mailto:[EMAIL PROTECTED] on Tuesday, March 08, 2005 9:54 AM said: Don't feel too bad. Every few weeks, I get an automated email from ezmlm warning me that php

Re: [PHP] ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread Mat Harris
:[EMAIL PROTECTED] Sent: 08 March 2005 19:58 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Kevin; PHP General Mail List Subject: RE: [PHP] suspicious - maybe spam Richard Lynch mailto:[EMAIL PROTECTED] on Tuesday, March 08, 2005 9:54 AM said: Don't feel too bad. Every few

[PHP] Re: ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread Lester Caine
[EMAIL PROTECTED] wrote: Yeah, same here. I thought it was my hosting service, but if other people are having the same issue then what's the deal? Usually it's only a message or two, but sometimes it says there are like 8 or 9 messages that bounced. Has anyone looked into this or have any

Re: [PHP] ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread Richard Lynch
Yeah, same here. I thought it was my hosting service, but if other people are having the same issue then what's the deal? Usually it's only a message or two, but sometimes it says there are like 8 or 9 messages that bounced. Has anyone looked into this or have any information regarding

Re: [PHP] ezmlm bounced email warnings - [was RE: [PHP] suspicious - maybe spam]

2005-03-09 Thread Nobody Special
On Wed, 09 Mar 2005 07:30:57 -0800, Rob Tanner [EMAIL PROTECTED] wrote: Every ezmlm mailing list I'm on does that periodically. Lists that I'm on that use MailMan never seem to have that problem. What then does that tell us about ezmlm... Everyone, eh. You must not be on many lists. I

Re: [PHP] suspicious - maybe spam

2005-03-08 Thread Richard Lynch
(If I could only get off ezmlm's suspicious user list. I think there isn't much I can do, it's my ISP rejecting some PHP list postings.) Don't feel too bad. Every few weeks, I get an automated email from ezmlm warning me that php-general messages have bounced, and I might be removed from the

RE: [PHP] suspicious - maybe spam

2005-03-08 Thread Chris W. Parker
Richard Lynch mailto:[EMAIL PROTECTED] on Tuesday, March 08, 2005 9:54 AM said: Don't feel too bad. Every few weeks, I get an automated email from ezmlm warning me that php-general messages have bounced, and I might be removed from the list if it keeps up. Same here. -- PHP General

Re: [PHP] [suspicious - maybe spam] Using heredocs

2005-01-21 Thread Jochem Maas
Tim Burgan wrote: Hello, I've just tried using heredocs [1] for the first time, but I am receiving parse errors always on the very last line of my document. The error is caused by my heredocs. Am I using it correctly? When I replaced the heredoc with a string.. everything worked again. Here's my