Kohana 3 Bulletin Board
开发者_如何学JAVAI have a site based on Kohana 3 framework. I want to integrate some bulletin board to it. I want to see boards in < div > tag of my site. And want to use accounts of this BB as my site accounts.
What way i must follow?
Have you tried Request class?
http://techportal.inviqa.com/2010/02/22/scaling-web-applications-with-hmvc
Maybe something like this in your view:
<div id="mybulletin"><?php echo Request::factory('myurl/method'); ?> </div>
精彩评论