[PHP] "php -l" - does it find *anything*?

2010-07-06 Thread Gary .
Or, alternatively put, is there any way to find the kind of problems in foo2 & foo3 (below), at "*compile* time"? ,[ lint-test.php ] | ` I only get errors displayed when code happens to pass down the code path, i.e. at runtime: , | /home/jg/work $ php -l lint-test.php | No syntax err

Re: [PHP] Question about the Board

2010-07-06 Thread Gary .
On 7/5/10, Gary[1] wrote: > The last few times I have posted to the board, I recieved an email, which > has the subject line of ??? ??? and is written in what appears to > be greek Ukrainian or Russian I would guess, looking at the headers. > Anyone else have this happen? Yes. Either so

Re: [PHP] "php -l" - does it find *anything*?

2010-07-06 Thread Ashley Sheridan
On Tue, 2010-07-06 at 10:54 +0200, Gary . wrote: > Or, alternatively put, is there any way to find the kind of problems in > foo2 & foo3 (below), at "*compile* time"? > > ,[ lint-test.php ] > | | > | error_reporting(E_ALL | E_STRICT); > | > | function foo1() > | { > | $bar = 'cheese'; >

Re: [PHP] Question about the Board

2010-07-06 Thread Ashley Sheridan
On Tue, 2010-07-06 at 11:00 +0200, Gary . wrote: > On 7/5/10, Gary[1] wrote: > > The last few times I have posted to the board, I recieved an email, which > > has the subject line of ??? ??? and is written in what appears to > > be greek > > Ukrainian or Russian I would guess, looking at

Re: [PHP] "php -l" - does it find *anything*?

2010-07-06 Thread Peter Lind
On 6 July 2010 11:30, Ashley Sheridan wrote: > On Tue, 2010-07-06 at 10:54 +0200, Gary . wrote: > >> Or, alternatively put, is there any way to find the kind of problems in >> foo2 & foo3 (below), at "*compile* time"? >> >> ,[ lint-test.php ] >> | > | >> | error_reporting(E_ALL | E_STRICT); >>

Re: [PHP] Inner join woes... and sweet tea!

2010-07-06 Thread Richard Quadling
On 5 July 2010 17:27, Gary wrote: > > "Richard Quadling" wrote in message > news:aanlktinredvfb5cjran9ati-ildvzctlkat-i7amb...@mail.gmail.com... >> On 5 July 2010 14:48, Pete Ford wrote: P.S. I don't have an emu. >>> >>> Clearly, or you'd know that they can't fly either... >>> :) >> >> GIGO

[PHP] cache_control_limiter

2010-07-06 Thread Guus Ellenkamp
I'm trying to set the cache_control_limiter to public, but it seems to stay in nocache. What can be wrong? Tried two servers. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] cache_control_limiter

2010-07-06 Thread Alexandre SIMON
If you want to manipulate cache control on PHP side, you must set PHP directive "session.cache_limiter" to an empty value. Be then sure to always set cache control headers to the right value according what your scripts do. 2010/7/6 Guus Ellenkamp > I'm trying to set the cache_control_limiter to

Re: [PHP] "php -l" - does it find *anything*?

2010-07-06 Thread Gary .
Ashley Sheridan writes: > On Tue, 2010-07-06 at 10:54 +0200, Gary . wrote: > If foo3 never happens to be called when I am doing my testing (for > example if the call is in some "if" branch that is never exercised) then > it only gets found in production, so I would like to find this ki

Re: [PHP] Question about the Board

2010-07-06 Thread Gary .
On 7/6/10, Ashley Sheridan wrote: > I have had a couple such emails, requesting me to log in somewhere in > order to have my address 'validated' as non-spam, but I ignored it and > nothing bad has happened to me yet! Not yet. *hides cattle prod behind back* -- PHP General Mailing List (http://w

Re: [PHP] "php -l" - does it find *anything*?

2010-07-06 Thread David Hutto
On Tue, Jul 6, 2010 at 8:22 AM, Gary . wrote: > Ashley Sheridan writes: >> On Tue, 2010-07-06 at 10:54 +0200, Gary . wrote: > >>     If foo3 never happens to be called when I am doing my testing (for >>     example if the call is in some "if" branch that is never exercised) then >>     it only get

Re: [PHP] "php -l" - does it find *anything*?

2010-07-06 Thread Per Jessen
Gary . wrote: > Yeah. There are static checkers out there, even some FOSS ones. I > guess I'm just a bit frustrated that (as you say) the man page says > that "-l" checks syntax but doesn't really detail what kind of things > that covers. It really is _only_ the syntax. Same goes for e.g. the C

Re: [PHP] HTML in emails

2010-07-06 Thread Andre Majorel
On 2010-07-04 11:43 -0400, Al wrote: > Seems like, from my preliminary Google searching, I should not waste > time with the standard's way and just go straight to sending simple > html pages since all modern browsers handle it well. And, it appears > to be the way web is going. "Browsers" ? "The

Re: [PHP] HTML in emails

2010-07-06 Thread Per Jessen
Paul M Foster wrote: > Here is the real problem with HTML email. Any straight text message > will swell to many times its size when you HTML-ize it. Okay, so now > you're sending the message around the internet to perhaps hundreds or > thousands of users, using up many times the bandwidth that the

Re: [PHP] Re: how to use HTML Symbol Entities with mail() ?

2010-07-06 Thread cr.vegelin
From: Ashley Sheridan To: Manuel Lemos Cc: cr.vege...@gmail.com ; php-general@lists.php.net Sent: Saturday, July 03, 2010 1:22 PM Subject: Re: [PHP] Re: how to use HTML Symbol Entities with mail() ? On Fri, 2010-07-02 at 22:58 -0300, Manuel Lemos wrote: Hello, on 07/01/2010 10:34 A

[PHP] communication protocol

2010-07-06 Thread Augusto Flavio
Hi List, I'm looking for a chat support likes the livezilla. The livezilla is a great tool but doesn't have language supports to another language instead english and german (operator side). Then I thought that a good option would be develop my own chat support. A great solution is build the serv

Re: [PHP] communication protocol

2010-07-06 Thread Ashley Sheridan
On Tue, 2010-07-06 at 18:41 -0300, Augusto Flavio wrote: > Hi List, > > > I'm looking for a chat support likes the livezilla. The livezilla is a great > tool but doesn't have language supports to another language instead english > and german (operator side). Then I thought that a good option wou

Re: [PHP] communication protocol

2010-07-06 Thread Phpster
Amfphp ( www.amfphp.org) is what you might be looking for. It converts php based content into the flex digestible format. Bastien Sent from my iPod On Jul 6, 2010, at 17:41, Augusto Flavio wrote: > Hi List, > > > I'm looking for a chat support likes the livezilla. The livezilla is a great >

Re: [PHP] HTML in emails

2010-07-06 Thread upscope
On Tuesday, July 06, 2010 07:03:58 am Andre Majorel wrote: > On 2010-07-04 11:43 -0400, Al wrote: > > Seems like, from my preliminary Google searching, I should not > > waste time with the standard's way and just go straight to sending > > simple html pages since all modern browsers handle it well.

RE: [PHP] Open Source SEO tool

2010-07-06 Thread Jack
Hi Ashley, Yes, I would have to have a list or pass parameters to tell it a domain name, some key words and then gather the results. This is something similar to what Peter has posted and gives me a starting point I believe. My thought is I would email myself the current position ( on that

RE: [PHP] Open Source SEO tool

2010-07-06 Thread Ashley Sheridan
On Tue, 2010-07-06 at 19:56 -0400, Jack wrote: > Hi Ashley, > > > Yes, I would have to have a list or pass parameters to tell it a domain name, > some key words and then gather the results. > > This is something similar to what Peter has posted and gives me a starting > point I believe. > >

Re: [PHP] HTML in emails

2010-07-06 Thread Paul M Foster
On Tue, Jul 06, 2010 at 06:32:40PM +0200, Per Jessen wrote: > Paul M Foster wrote: > > > Here is the real problem with HTML email. Any straight text message > > will swell to many times its size when you HTML-ize it. Okay, so now > > you're sending the message around the internet to perhaps hundr

Re: [PHP] communication protocol

2010-07-06 Thread Augusto Flavio
Hi again, I'm thinking about in how to do the communication between web chat in browser client, the server and the operator desktop client. I'm thinking in web service likes wsdl. Is a good option? Thanks Augusto Morais

Re: [PHP] cache_control_limiter

2010-07-06 Thread Guus Ellenkamp
Thanks for the reply. I'm able to manipulate it with ini_set. However, according the documentation I should also be able to manipulate it with the function. Is it a bug? "Alexandre SIMON" wrote in message news:aanlktinxc9ejxvf2xd7hj_92r3y2yxalzvntjvcll...@mail.gmail.com... > If you want to ma

Re: [PHP] communication protocol

2010-07-06 Thread Phpster
Try rest based or comet for chat Bastien Sent from my iPod On Jul 6, 2010, at 22:41, Augusto Flavio wrote: > Hi again, > > I'm thinking about in how to do the communication between web chat in > browser client, the server and the operator desktop client. > > I'm thinking in web service likes

[PHP] window.open access parent's JS?

2010-07-06 Thread Skip Evans
Hey all, Is there a way to have a window opened with window.open() inherit the parent windows JS environment? In other words, I call window.open() with a URL that displays a form created by a PHP script. JS code has already been loaded by the parent, and I need to be able to access that code vi

[PHP] PHP Programmer

2010-07-06 Thread peeyush gulati
Hi Every One Expert PHP programmer. Interested in Web game development ? (*Expatriate allowed) UBISoft Chengdu is seeking for talented web programmer with interest and experience in the web domain. The main responsibility of the web programmer would be to make various modules for online games.