Re: [nyphp-talk] How to pass array when click on "submit" ?

2009-01-29 Thread Jesse Callaway
Thanks! Am now reading http://us2.php.net/manual/en/language.variables.external.php. -jesse On Thu, Jan 29, 2009 at 11:43 AM, Elijah Insua wrote: > anyone else care to beat the (dead) dog? > > On Thu, Jan 29, 2009 at 11:33 AM, Brian Dailey wrote: >> >> Jesse, don't worry about having questions,

[nyphp-talk] [ANNOUNCE] Andromeda Feature Freeze

2009-01-29 Thread Kenneth Downs
Andromeda is a database application framework written in PHP that builds and uses PostgreSQL databases. I am very happy to announce that as of tonight, we have drafted all features that compose the original vision of Andromeda. We are now entering into debugging and documentation mode and are

Re: [nyphp-talk] How to pass array when click on "submit" ?

2009-01-29 Thread Elijah Insua
anyone else care to beat the (dead) dog? On Thu, Jan 29, 2009 at 11:33 AM, Brian Dailey wrote: > Jesse, don't worry about having questions, they are welcome on this list. > > As far as your question, yes, it can be done. If you create a form input > labeled data[Person][name] it will be referenc

Re: [nyphp-talk] How to pass array when click on "submit" ?

2009-01-29 Thread Brian Dailey
Jesse, don't worry about having questions, they are welcome on this list. As far as your question, yes, it can be done. If you create a form input labeled data[Person][name] it will be referenced in the next page like this: $_POST['data']['Person']['name] Some frameworks use this extensively,