>
> Are you trying to generate some forms on a website and them processed them on ZF based website? And then need information about inputs to validate and filter them? If you do you could maybe serialize your form object either in a database or in a session (depending on your use) and then unserialize your form object to get full informations about how to process it.
Don't pass sessions between servers unless you understand the security implications.
Post the data over SSL from a form served on Server A to the action on Server B.
On Server B's controller, get the data from the request object and pass it to the model to validate/sanitize it using Zend_Form or Zend_Filter_Input.
没有评论:
发表评论