[PHP] e107 opinions

2006-08-01 Thread Tony Aldrich
Good day! I want to ask any comments about e107 CMS? Easy? Usefull? Extendible? Thanks. Tony. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Robert Cummings
On Wed, 2006-08-02 at 04:15 +0200, rich gray wrote: > Robert Cummings wrote: > > [chop] > > An IDE is not a framework, it's an IDE :) > > > > Cheers, > > Rob. > > > I think Rob is being unduly modest - correct me if I am wrong but he is > the core developer of the InterJinn php framework -> >

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread rich gray
Robert Cummings wrote: [chop] An IDE is not a framework, it's an IDE :) Cheers, Rob. I think Rob is being unduly modest - correct me if I am wrong but he is the core developer of the InterJinn php framework -> http://interjinn.com - it's been out there for a while now (read: robust, fully

Re: [PHP] Re: PHP Frameworks - Opinion

2006-08-01 Thread Ligaya Turmelle
Colin Guthrie wrote: Satyam wrote: There is no 'common consensus' but I am sure you'll be getting lots and lots, I would even say LOTS, of sugestions. I'm surprised no-one has mentioned the Zend Framework yet. I'm looking to do a bit of a rewrite of a large PHP application in the near

[PHP] Re: PHP Frameworks - Opinion

2006-08-01 Thread Colin Guthrie
Robert Cummings wrote: On Tue, 2006-08-01 at 18:17 -0400, tedd wrote: At 10:46 PM +0100 8/1/06, Colin Guthrie wrote: I'm surprised no-one has mentioned the Zend Framework yet. snip. I own Zend Professional, but don't use it (not good or bad). snip. An IDE is not a framework. it's an

Re: [PHP] Re: PHP Frameworks - Opinion

2006-08-01 Thread Robert Cummings
On Tue, 2006-08-01 at 18:17 -0400, tedd wrote: > At 10:46 PM +0100 8/1/06, Colin Guthrie wrote: > >I'm surprised no-one has mentioned the Zend Framework yet. > > > >I'm looking to do a bit of a rewrite of a large PHP application in > >the near future and would like to think Zend would be a goo

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Robert Cummings
On Tue, 2006-08-01 at 23:40 +0100, Steve Turnbull wrote: > On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote: > > What's the common consensus as to a solid PHP framework to use for > > application development? There seems to be a number of them out there, > > but I'm not sure which one's are the mos

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Adam Zey
Steve Turnbull wrote: On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote: What's the common consensus as to a solid PHP framework to use for application development? There seems to be a number of them out there, but I'm not sure which one's are the most robust, actively developed, secure, etc etc.

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Steve Turnbull
On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote: > What's the common consensus as to a solid PHP framework to use for > application development? There seems to be a number of them out there, > but I'm not sure which one's are the most robust, actively developed, > secure, etc etc. > > Thoughts?

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Michael B Allen
On Tue, 1 Aug 2006 19:44:28 +0200 "Satyam" <[EMAIL PROTECTED]> wrote: > There is no 'common consensus' but I am sure you'll be getting lots and > lots, I would even say LOTS, of sugestions. I would be very skeptical of any "suggestions" because only someone who tried multiple frameworks would b

Re: [PHP] Dynamically assigning var namesi

2006-08-01 Thread Miles Thompson
At 02:49 PM 8/1/2006, bob pilly wrote: Hi all Does anyone know if you can assign a new variable name based on the contents of another variable in PHP? If so whats the syntax to do this? I am parsing a text file that has tens of preset attributes and some of these have hundreds of sub attri

[PHP] Re: PHP Frameworks - Opinion

2006-08-01 Thread tedd
At 10:46 PM +0100 8/1/06, Colin Guthrie wrote: I'm surprised no-one has mentioned the Zend Framework yet. I'm looking to do a bit of a rewrite of a large PHP application in the near future and would like to think Zend would be a good horse to back, but the fact no-one here has mentioned it

[PHP] Re: PHP Frameworks - Opinion

2006-08-01 Thread Colin Guthrie
Satyam wrote: There is no 'common consensus' but I am sure you'll be getting lots and lots, I would even say LOTS, of sugestions. I'm surprised no-one has mentioned the Zend Framework yet. I'm looking to do a bit of a rewrite of a large PHP application in the near future and would like t

Re: [PHP] Retrieving response headers from an off-site page

2006-08-01 Thread John Gunther
Thank you! It sure looks like cURL is exactly the tool I need. As soon as I get it installed, I'll start playing with it. Ray Hauge wrote: I deal with screen-scraping a lot at work. I would suggest using cURL to store the cookie data, and then subsequently get the data you need. HTH --

[PHP] Re: Dynamically assigning var namesi

2006-08-01 Thread Jo�o C�ndido de Souza Neto
I would like to help, but i need some mor details. each line of the text file is a flight? If so, how are separeted each passenger? It would be important to help me in thinkin somethink to help you. "bob pilly" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > Hi all > > Does a

Re: [PHP] Dynamically assigning var namesi

2006-08-01 Thread dpgirago
Bob Pilly asked earlier today: > Does anyone know if you can assign a new variable name based on the contents of another variable in PHP? If so whats the syntax to do this? $counter = 1; for ($i == 0; $i < 6; $i++) { ${'newVar_' . $counter} = $counter; $counter++; } echo $newVar_1 .

Re: [PHP] Dynamically assigning var namesi

2006-08-01 Thread Brad Bonkoski
Hi Bob, Based on what you said, I would say the normal coding way of handling this is with an array. If you are unfamiliar with them, www.php.net/array would be a good place to start. -Brad bob pilly wrote: Hi all Does anyone know if you can assign a new variable name based on the contents

Re: [PHP] PEAR::DB and PDO

2006-08-01 Thread Ezra Nugroho
I've used PDO, PEAR::DB, and ADOdb. I like ADOdb the most. You'd love it's new Active Record extension. On Tue, 2006-08-01 at 18:47 +0100, Yannick Warnier wrote: > Hi there, > > I will soon need to include a database abstraction layer in my company's > software and I am looking for the best ch

Re: [PHP] PEAR::DB and PDO

2006-08-01 Thread Lester Caine
Yannick Warnier wrote: Hi there, I will soon need to include a database abstraction layer in my company's software and I am looking for the best choice to make. The software is promoted as working with PHP4, so I wouldn't use PDO, although I see that a PHP4 implementation of PDO exists [1] and

[PHP] Dynamically assigning var namesi

2006-08-01 Thread bob pilly
Hi all Does anyone know if you can assign a new variable name based on the contents of another variable in PHP? If so whats the syntax to do this? I am parsing a text file that has tens of preset attributes and some of these have hundreds of sub attributes. For example the text file contains f

[PHP] PEAR::DB and PDO

2006-08-01 Thread Yannick Warnier
Hi there, I will soon need to include a database abstraction layer in my company's software and I am looking for the best choice to make. The software is promoted as working with PHP4, so I wouldn't use PDO, although I see that a PHP4 implementation of PDO exists [1] and I could use this one (any

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Satyam
There is no 'common consensus' but I am sure you'll be getting lots and lots, I would even say LOTS, of sugestions. Satyam - Original Message - From: "Gabe" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 01, 2006 6:35 PM Subject: [PHP] PHP Frameworks - Opinion What's the common co

RE: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Kilbride, James P.
I like what I've been seeing from Solar at solarphp.com. And Paul Jones, the maintainer, is extremely active on the project and the community seems to be very much in love with the framework. Community is a little small but going pretty strong. James Kilbride > -Original Message- > From:

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Paul Scott
On Tue, 2006-08-01 at 12:35 -0400, Gabe wrote: > What's the common consensus as to a solid PHP framework to use for > application development? There seems to be a number of them out there, > but I'm not sure which one's are the most robust, actively developed, > secure, etc etc. > OK, from m

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Kevin Waterson
This one time, at band camp, Gabe <[EMAIL PROTECTED]> wrote: > What's the common consensus as to a solid PHP framework to use for > application development? There seems to be a number of them out there, > but I'm not sure which one's are the most robust, actively developed, > secure, etc etc.

[PHP] PHP Frameworks - Opinion

2006-08-01 Thread Gabe
What's the common consensus as to a solid PHP framework to use for application development? There seems to be a number of them out there, but I'm not sure which one's are the most robust, actively developed, secure, etc etc. Thoughts? -- PHP General Mailing List (http://www.php.net/) To unsu

[PHP] Re: non blocking fsockopen

2006-08-01 Thread Adam Zey
clive wrote: I know in PHP 5 you can use stream_socket_client() and set the flag to STREAM_CLIENT_ASYNC_CONNECT|STREAM_CLIENT_CONNECT which opens the socket in a non blocking mode. in php 4 you can use fsockopen and then set the socket to non blocking. The problem with this is that the fsocko

[PHP] Re: memory leak - how to find it?

2006-08-01 Thread Adam Zey
Robin Getz wrote: I am trying to debug a php script that I downloaded, which has a memory leak in it. I was looking for a way to find what variables were in php's memory, and what size, they were, but I couldn't find anything? The script is a off-line wiki conversion tool (walks through a wi

Re: [PHP] Books: PHP and WAP

2006-08-01 Thread Angelo Zanetti
Austin Denyer wrote: Angelo Zanetti wrote: Hi all, I need some recommendations for books: are there any good books on PHP and WAP/WML? Also (OT) a recommendation regarding books for CSS2 and XHTML. http://www.hudzilla.org/phpbook/ Regards, Austin. Thanks to all those who repl

RE: [PHP] All active variables?

2006-08-01 Thread Peter Lauri
Great stuff, I probably just searched the wrong words. -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 6:22 PM To: Peter Lauri Cc: php-general@lists.php.net Subject: Re: [PHP] All active variables? Peter Lauri wrote: > Is it possible to print out al

Re: [PHP] All active variables?

2006-08-01 Thread Stut
Peter Lauri wrote: Is it possible to print out all variables that are active within a script without doing it manually? This is what I would like to do: $a = 12; $b = 'Peter'; $c = 'Lauri'; echo ''; print_r( get_all_variables() ); echo ''; 30 seconds of searching the PHP site later... http:/

[PHP] All active variables?

2006-08-01 Thread Peter Lauri
Hi, Is it possible to print out all variables that are active within a script without doing it manually? This is what I would like to do: $a = 12; $b = 'Peter'; $c = 'Lauri'; echo ''; print_r( get_all_variables() ); echo ''; Best regards, Peter Lauri -- PHP General Mailing List (http://www.ph