0

I have a custom php site and I want to add the ability of ACL and logins. Would it be possible to handle all these with zend functions but without rebulding the whole site on zend framework? Thank you!

Yannis Assael
  • 1,099
  • 2
  • 20
  • 43
  • More of a follow up to the answer - check out this post: [http://stackoverflow.com/questions/1466252/zend-framework-1-9-how-to-use-autoloading-without-mvc][1] [1]: http://stackoverflow.com/questions/1466252/zend-framework-1-9-how-to-use-autoloading-without-mvc – orderofout Jun 19 '12 at 22:38

1 Answers1

2

Yes,

This is the beauty of zend framework you can use how much you want to use. For your requirement just include the zend loader in your index.php and some more code of bootstraping thats it and now you can use any component of ZEND.

jimy
  • 4,848
  • 3
  • 35
  • 52