PHP Classes

PHP FrameWork Class: Generate a Web interface to edit database records

Recommend this page to a friend!
  Info   View files Example   View files View files (20)   DownloadInstall with Composer Download .zip   Reputation   Support forum (2)   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 155 All time: 9,021 This week: 488Up
Version License PHP version Categories
phpframeworkclass 1.0Public Domain5HTML, PHP 5, Content management, Code..., A...
Description 

Author

This package can be used to generate a Web interface to edit database records.

It can generate PHP code files that present a Web interface to perform basic operations to manipulate records of database tables.

The package can generate code files that will go to a configurable directory.

Picture of Helio Barbosa
Name: Helio Barbosa <contact>
Classes: 2 packages by
Country: Brazil Brazil
Age: ???
All time rank: 3850309 in Brazil Brazil
Week rank: 295 Up23 in Brazil Brazil Up

Example

<?php

  $hostIP
= $_GET['ip'];
 
$user = $_GET['user'];
 
$password = $_GET['pass'];
 
$database = $_GET['db'];
 
$folder = $_GET['fold'];


 
/* Make the back-end classes */
 
include_once("makeclass.php") ;
 
$NewWork = New WorkClass() ;
 
$NewWork->setHostNameIP($hostIP);
 
$NewWork->setUserName($user);
 
$NewWork->setPassWord($password);
 
$NewWork->setDbName($database);
 
$NewWork->setFolder($folder);
  foreach(
$_GET as $key => $value){
    if(
substr($value,0,3)=='db_')
    {
     
$NewWork->settableName( $value ) ;
     
$NewWork->makeDoIt();
    }
  }


 
/* Make the front-end classes */
 
include_once("makeFrontEnd.php") ;
 
$NewFront = New makeFrontEnd() ;
 
$NewFront->setHostNameIP($hostIP);
 
$NewFront->setUserName($user);
 
$NewFront->setPassWord($password);
 
$NewFront->setDbName($database);
 
$NewFront->setFolder($folder);

  foreach(
$_GET as $key => $value){
    if(
substr($value,0,3)=='db_')
    {
     
$NewFront->settableName( $value ) ;
     
$NewFront->makeDoIt();
    }
  }

 
/* Create a default.php with itens liked */
 
include_once("makeDefault.php");
 
$NewDefaullt = New makeDefault();
 
$NewDefaullt->setfolder($folder);
 
$NewDefaullt->makeClass($_GET);

?>


Details

phpFrameWorkClass

A new framework for generate PHP Object Class for database manipulation You can help me to creat a new framwork for improve and standardize the source code It is easy to use, put in a new folder into your web server and call the web page. The application isn't finished at the this moment 10-07-2019 8:20pm


  Files folder image Files  
File Role Description
Files folder imagecss (1 file)
Files folder imagejs (10 files)
Plain text file connection.php Class Class source
Accessible without login Plain text file dbacess.php Example Example script
Accessible without login Plain text file default.php Aux. Auxiliary script
Accessible without login Plain text file LICENSE Lic. License text
Plain text file makeclass.php Class Class source
Accessible without login Plain text file makeclass_before.php Example Example script
Plain text file makeDefault.php Class Class source
Plain text file makeFrontEnd.php Class Class source
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  css  
File Role Description
  Accessible without login Plain text file padrao.css Data Auxiliary data

  Files folder image Files  /  js  
File Role Description
  Accessible without login Plain text file angular-animate.min.js Data Auxiliary data
  Accessible without login Plain text file angular-route.min.js Data Auxiliary data
  Accessible without login Plain text file angular.min.js Data Auxiliary data
  Accessible without login Plain text file funcoes.js Data Auxiliary data
  Accessible without login Plain text file jquery.min.js Data Auxiliary data
  Accessible without login Plain text file jsLibrary1.11.1.js Data Auxiliary data
  Accessible without login Plain text file toaster.js Data Auxiliary data
  Accessible without login Plain text file ui-bootstrap-modal-0.10.0.min.js Data Auxiliary data
  Accessible without login Plain text file ui-bootstrap-tpls-0.10.0.min.js Data Auxiliary data
  Accessible without login Plain text file view-source_ajax.g....11.1_jquery.min.js Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:155
This week:0
All time:9,021
This week:488Up
User Comments (1)