syntanext / mop

( WEBSITE VERSION ) MOP is a php query handling and manipulation library providing easy and reliable way to manipulate query and get result in a fastest way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MOP_logo

SourceForge SourceForge SourceForge

Packagist License

GitHub release (latest by date including pre-releases)

GitHub forks GitHub Repo stars

Mysql Optimizer

mysql optimizer also known as MOP is a php query handling and manipulation library providing easy and reliable way to manipulate query and get result in a fastest way.

Recomended Requirement

  • PHP >= 7

Supported Query Handler

  • MYSQLI
  • PDO

Geting Started

you can actually run 4 lines of code and get your result with this library

$connect = new Mysql\mop($DB_ADDRESS,$DB_USER,$DB_PASS,$DB_NAME);
$connect->query("SELECT .....");
$connect->run();
$connect->get_column('name');

Over All Preview

  // SIMPLE PREVIEW
  
  // connect
  $firstconnection = new Mysql\mop($DB_ADDRESS,$DB_USER,$DB_PASS,$DB_NAME);

  // query
  $query = "SELECT ....";
  $firstconnection->query($query);
  
  // Run query
  $firstconnection->run();
  
  // Get all column result as csv
  $firstconnection->csv;
  
  // Get column by name
  $firstconnection->get_column('columnname');
  
  // Get column by index
  $firstconnection->get_column(0);
  
  // Get number of affected or selected rows
  $firstconnection->num_of_rows;
  
  // IS THAT ALL? NO IS MORE THAN THAT
  // CHECK DOCUMENTATION FOR MORE
  

Documentation

Installation

It can be included or required in any php file or download using composer

Composer install

composer require bringittocode/mop

Manual install

download both files in src folder and place them anywhere in your folder directory then include or reqiure mop.php file.

IF YOU GET UNKNOWN ERROR WITH THIS LIBRARY ON YOUR WEB SERVER...... YOU HAVE TO TRY THIS.

mop_error

Go to your cpanel, find change php version and click on it, when the page fullly loaded, first of all make sure you are using php >= 7. Then uncheck mysqli and check nd_mysqli save it and try again with the library , everything should work fine.

LICENSE

fork and feel free to pull request....

MOP is licensed under the MIT License.

About

( WEBSITE VERSION ) MOP is a php query handling and manipulation library providing easy and reliable way to manipulate query and get result in a fastest way.

License:MIT License


Languages

Language:PHP 100.0%