PHP Classes

File: MaricutoDB/init.php

Recommend this page to a friend!
  Classes of Yorman   Maricuto PHP Flat File Database   MaricutoDB/init.php   Download  
File: MaricutoDB/init.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Maricuto PHP Flat File Database
Manage a database storing the data in files
Author: By
Last change:
Date: 5 years ago
Size: 1,168 bytes
 

Contents

Class file image Download
<?php
#########################################
# MaricutoDB
# Copyright (c) | Yorman Maricuto 2018 |
# Yerikmiller@gmail.com
# http://maricuto.site90.com
#
#
# This follow the CRUD System: Create, Read, Update and delete:
# database, table, items and content...
#
# MaricutoDB
# Can Create Database Easily.
# Can Create Hashes with Strong Security to store passwords.
# Can Read the databases dinamically and with flexibility.
# Can Update Content Easily: DB, Tables, Rows (ItemNames) and Colums (ItemContent).
# Can Update passwords Easily.
# Can Verify if a data in login panel is correct, as passwords and usenames.
# Can Sort from new to old and old to new the data.
# Can Make backups of your DBs.
# Can Delete Database with BackUp System.
#########################################



#############
define('DB_LIBS_FOLDER', __DIR__.'/files/libs/');
# LIST OF VALID TIMEZONES http://php.net/manual/es/timezones.php
$GLOBALS['backupfolder'] = dirname(DB_LIBS_FOLDER).'/backups/';
if (!isset(
$GLOBALS['timezone'])) {
   
$GLOBALS['timezone'] = 'America/Lima';
}
##############
require_once 'files/db.class.php';
##############

?>