-- kevin7654 <[EMAIL PROTECTED]> wrote (on Saturday, 07 July 2007, 05:34 PM -0700): > I'm trying to slowly migrate an app I've written over to the zend framework. > The app currently relies on global variables, ie global $my_name, and it > also relies on get and post values. Can I enable this with the zend > framework?
There's nothing that prevents you from using globals or superglobals in ZF. However, that said, you can sometimes run into issues using globals that weren't first defined in the global namespace. Adding a declaration for them in your bootstrap will typically correct the issue. -- Matthew Weier O'Phinney PHP Developer | [EMAIL PROTECTED] Zend - The PHP Company | http://www.zend.com/
