Re: [fw-general] Getting POSTed values of a form which build by view script

2009-09-01 Thread neobeacon

Extremely sorry,You are great.
Sorry about my english.
-- 
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233309p25239112.html
Sent from the Zend Framework mailing list archive at Nabble.com.



Re: [fw-general] Getting POSTed values of a form which build by view script

2009-09-01 Thread neobeacon

I read this post in this site
http://www.nabble.com/Zend_Form-complex-forms-td16785924.html

and can I do that way?

Thanks,You are grate.
-- 
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233309p25238975.html
Sent from the Zend Framework mailing list archive at Nabble.com.



Re: [fw-general] Getting POSTed values of a form which build by view script

2009-09-01 Thread Matthew Weier O'Phinney
-- neobeacon  wrote
(on Monday, 31 August 2009, 10:22 PM -0700):
> I also want to use Zend_Form But I don't know how to design this form using
> Zend_Form.I know how to add form elements and filters and validators.IF you
> have any idea please send.Thanks.

I've written a series of posts on Zend_Form's decorator system:

http://weierophinney.net/matthew/plugin/tag/decorators

Start with the earliest one on that page (bottom of page) and work your
way up.

-- 
Matthew Weier O'Phinney
Project Lead| matt...@zend.com
Zend Framework  | http://framework.zend.com/


Re: [fw-general] Getting POSTed values of a form which build by view script

2009-08-31 Thread neobeacon

I also want to use Zend_Form But I don't know how to design this form using
Zend_Form.I know how to add form elements and filters and validators.IF you
have any idea please send.Thanks.

And also I got the logic to get POST[] values.Thanks in deep.

http://www.nabble.com/file/p25234466/Picture1.png 
-- 
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233309p25234466.html
Sent from the Zend Framework mailing list archive at Nabble.com.



Re: [fw-general] Getting POSTed values of a form which build by view script

2009-08-31 Thread Sean Utt
You can use Zend_Form with viewscripts to generate arbitrary layout, and 
still get the benefits of Server SideValidation and Dojo too.


-- Sean

- Original Message - 
From: "neobeacon" 

To: 
Sent: Monday, August 31, 2009 7:02 PM
Subject: [fw-general] Getting POSTed values of a form which build by view 
script





If I build a form by using  view script (using html tags/without using 
zend's

form elements) how to get posted values from action's page ?
--
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233309p25233309.html

Sent from the Zend Framework mailing list archive at Nabble.com.







Re: [fw-general] Getting POSTed values of a form which build by view script

2009-08-31 Thread Brenton Alker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

neobeacon wrote:
> If I build a form by using  view script (using html tags/without using zend's
> form elements) how to get posted values from action's page ?

In a controller action:

$this->_request->getPost(); // will return an array of all $_POST values
$this->_request->getPost('name'); // will return the value of $_POST['name']
and
$this->_getParam('name'); // will return something similar to
$_REQUEST['name'] (the value from a combination of $_GET and $_POST, but
includes data parsed from the route)

- --

Brenton Alker
PHP Developer - Brisbane, Australia

http://blog.tekerson.com/
http://twitter.com/tekerson

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkqcgzMACgkQ7bkAtAithusztQCeJt/2yWwsPJmv0IXt3oXUmPwa
UNwAn1wex5Dy7mJuKsT56KTkUygsc7mS
=MhWN
-END PGP SIGNATURE-


[fw-general] Getting POSTed values of a form which build by view script

2009-08-31 Thread neobeacon

If I build a form by using  view script (using html tags/without using zend's
form elements) how to get posted values from action's page ?
-- 
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233309p25233309.html
Sent from the Zend Framework mailing list archive at Nabble.com.



[fw-general] Getting POSTed values of a form which build by view script

2009-08-31 Thread neobeacon

If I build a form by using  view script (using html tags/without using zend's
form elements) how to get posted values from action's page ?
-- 
View this message in context: 
http://www.nabble.com/Getting-POSTed-values-of-a-form-which-build-by-view-script-tp25233310p25233310.html
Sent from the Zend Framework mailing list archive at Nabble.com.