Questions tagged [kiss-mvc]

KISSMVC is a simple and minimalist PHP Model-View-Controller (MVC) framework for rapid development of web applications.

KISSMVC is a simple and minimalist PHP Model-View-Controller (MVC) framework for rapid development of web applications.

It is designed with the KISS principle in mind, and the entire source code can be read and understood in minutes.

KISSMVC provides 3 small classes:

  • The Model class is a simple ORM that works on single database tables.
  • The View class is a simple PHP templating system.
  • The Controller class lets you use friendly URLs routed though a single index.php page.

Reference: http://kissmvc.com/

3 questions
2
votes
0 answers

limit GET using .htaccess in a KISSMVC php based site

I have a KISSMVC php based site with the following .htaccess to allow only authenticated users to see the site RewriteEngine On RewriteBase /myphpsite/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [L] # Protect app…
Ixcqc4cGF
  • 181
  • 1
  • 5
1
vote
1 answer

is this technique ok with frameworks: storing all texts in seperate plain text file?

I am considering to use a php framework (never used one before), I know I have to abandon the way I am used to work (I can deal with this), among many concerns a first thing that comes in my mind is this: I have two techniques I like to use (have…
Melsi
  • 1,462
  • 1
  • 15
  • 21
0
votes
4 answers

PHP redirect within a function call

I have looked at some of the other posts made on similar topics but I cannot follow what they are instructing. Basically my problem is this, I want to redirect to the main log in page of my website after a successful password reset has…
Zach M.
  • 1,188
  • 7
  • 22
  • 46