Re: [PHP-DB] Really Good PHP editor

2005-07-06 Thread Brad Webb
a new editor 'PHP Designer 2005' from www.mpsoftware.dk/phpdesigner.php. Its free and looks very slick and feature rich. Being as new as it is its a little buggy right now, but certainly worth keeping an eye on. Brad Webb wrote: I'm a big fan of Eclipse + PHP|Eclipse. Bastien Koert wrote

Re: [PHP-DB] Really Good PHP editor

2005-07-05 Thread Brad Webb
I'm a big fan of Eclipse + PHP|Eclipse. Bastien Koert wrote: Zend is pretty close to what you want Bastien From: Ross Honniball [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Really Good PHP editor Date: Tue, 05 Jul 2005 17:55:49 +1000 Hi All, Not a DB question, but this is

Re: [PHP-DB] Can someone help me out?

2005-06-07 Thread Brad Webb
Is your query wrapped in single quotes, instead of double quotes? Variable expansion, of course, doesn't occur under single quotes. :) ReClMaples wrote: I am having a problem getting a sql statement to run. I have this in a table called stat_categories, in a field called sql2 select

Re: [PHP-DB] Can someone help me out?

2005-06-07 Thread Brad Webb
eval($recss[sql1]).. variables inside a string have to be expanded manually, since you're storing the variable names inside the DB, you have to manually pull them out.. Sorry for not catching this earlier, I didn't realize the query itself was stored in the DB. ReClMaples wrote: All,

Re: [PHP-DB] Transfering post data to a series of pages.

2005-05-04 Thread Brad Webb
You may also consider using sessions to store form data.. this allows for actual user interaction with the data, back/forward etc... as well as tracking and other stuff.. you really should only have Page1.php, and use a logic object to parse the data from there.. IMHO, of course. :) [EMAIL