Giter Site home page Giter Site logo

apter-x / dataman_archive Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 92 KB

Dataman is a simple database manager using PDO that simplifies back-end processing and grants with useful tools.

License: GNU General Public License v3.0

PHP 100.00%
dataman pdo database-manager database

dataman_archive's Introduction

Dataman

Dataman is a simple database manager using PDO that simplifies back-end processing and grants with useful tools.

Instructions

  • Go to the root of your php project and git clone https://github.com/Apter-X/dataman.git.
  • Configure the connection with your database here ./database/myConfig.

How to use

  include_once './dataman/config.php';
  $dataman = new Dataman;
  $dataman->ping();

Example

Let's pretend that table represents our datatable.

users

id username is_admin
1 steave 0
2 pyck 0
3 bishop 1

With this method we can get a specific row in a table as an associative array :

  $data = $dataman->selectRow('users', 'id', '3');
  $dataman->displayRow($data);

Output:

id username is_admin
3 bishop 1

With this method we can get a specific value in a table as a string :

  $data = $dataman->selectValue('users', 'username','is_admin', '1');
  echo $data;

Output: bishop


License

Under GNU General Public License v3.0.

dataman_archive's People

Contributors

apter-x avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.