reggieN0ble Posted April 27, 2006 Share Posted April 27, 2006 I've just started writing a PHP application and I have a couple of questions. I come from a extensive java/c/c++ background. First, is there an MVC framework for PHP that is widely used/accepted? I've used Struts (java mvc framework) and really liked the seperation of code from presentation and would like the same for my PHP app. I've seen a few MVC frameworks for PHP, but are any of them widely accepted.Also, is there a way to hide PHP scripts so that they aren't web accessible? In java anything placed in the WEB-INF directory was not web accessable but was from code itself. I would like to place the DAO layer/value objects... in a non web accessable location. Thanks in advance for any help. Also, I must say that PHP is WAY faster to write applications in than java. Link to comment https://forums.phpfreaks.com/topic/8533-php-mvc-and-security-question/ Share on other sites More sharing options...
trq Posted April 27, 2006 Share Posted April 27, 2006 Plenty of MVC frameworks around for php, I cant say any are more widely used than others, there's not really a [i]standard[/i]. I like symphony (google it) though, simular in design to ruby on rails.As for hiding your scripts, if you can, place your files outside the web root directory. Or use .htaccess to lock a certain directory down. Link to comment https://forums.phpfreaks.com/topic/8533-php-mvc-and-security-question/#findComment-31325 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.