show/hide this revision's text 3 added 5 characters in body

I found a Simple PHP Framework...and it looks like a good fantastic "no framework" framework ;)

show/hide this revision's text 2 deleted 1 characters in body

My typical script

I found a Simple PHP Framework...and it looks like :

<?
require 'config.php'; // set up constants, DB connections and so on
require 'functions.common.php';
require 'functions.about_me.php';

user_authentication()a good "no framework" framework ;if (/* user submitted page */) {
  $valid = validate_form(/* validation rules */);
  if ($valid === true){
    // do db changes
    // redirect user
  } else {
    // output error messages
  }
}
page_header('About Abi'); // page header, site menu and so on
?>

// page content

<? page_footer(); ?>

I use PDO and Validate

    Post Undeleted by Abi Noda
    Post Deleted by Abi Noda
show/hide this revision's text 1