npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

crud_php

v0.0.2

Published

Single file PHP script that adds CRUD to a MySQL, Firebird, PostgreSQL, SQL Server, SQLite or any database.

Downloads

23

Readme

CRUD_PHP

📝 Table of Contents

  1. Introduction
  2. Some Features
  3. Requirements
  4. Installation 4.1 Automated-Installer
  5. Updating
  6. Version Support Information
  7. Security
  8. Contributing
  9. License
  10. Demo
  11. Sponsor-Chat
  12. Sponsoring
  13. Special Thanks

🧐 Introduction

This is a CRUD in PHP , which aims to simplify connections with all existing database types, creating a standardization of commands. The code is well designed and commented. It uses an intuitive architecture to ensure clarity between logic and presentation. Seeking to ensure a safe and adequate way of storing data. A lightweight and fast shaping engine. Cache system support: "apc", "array", "database", "file", "memcached" and "redis" methods. Eloquent and much more!

💎 Some Features

CRUD_PHP currently offers the following features:

  • CRUD system in Mysql with PDO
  • Database + files backup manager
  • and MUCH MORE!

☑️ Requirements

  • A web server with PHP
  • PHP 5.0+ is required
  • Dependencies for PHP,
  • php-curl -> recommended for APIs.
  • php-intl -> Recommended for SslCertificate.
  • php-zip -> This is required for Backup Manager.
  • crontab access
  • database server

🖥️ Installation

To learn more about using CRUD PHP, I recommend looking at our wiki, click here.


NOTE: If you are running CRUD_PHP on change the following configs.

Automated Installer

A CRUD_PHP Installer.

Supported OS's

  • All (Recommended)

For Npm:

npm install crud_php 

For Git:

git clone https://github.com/maickwendelldev/CRUD_PHP.git

🖥️ Updating

coming soon

🚨 Version Support Information

Version | Status | PHP Version Required :------------|:-------------------------|:------------ 0.0.1 | Active Support :rocket: | >= 5.x.x 0.0.0 | End Of Life :skull: | <= 4.x.x

🔐 Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

✍️ Contributing

help us build a better crud, send your improvement suggestions to email [email protected].

📝 License

CRUD_PHP is open-sourced software licensed under the MIT License.

As per license do not remove the license from sourcecode files

/**
 * PHP PDO Mysql class.
 * PHP Version 7.0.
 * File Version 1.0.0.0
 *
 * @see       https://github.com/maickwendelldev/CRUD_PHP.git - The CRUD_PHP GitHub project
 *
 * @author    Maick Wendell (Merk/H4ck3r Sl4v3) - (original founder) <[email protected]>
 * @copyright 2021 - 2022 Maick Wendell
 * @license   https://github.com/maickwendelldev/CRUD_PHP/blame/main/LICENSE - MIT License
 * @note      This program is distributed in the hope that it will be useful - WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 */

Or the credits from footer in footer (optional)

<li>
<a href="https://github.com/maickwendelldev/CRUD_PHP.git" target="_blank" class="btn btn-xs btn-primary">CRUD PHP</a>
</li>

🖥️ Demo

For working you need edit in crud.php.(a PDO Mysql is active for to disable just put #)

//Put the database server host, by default we put ("localhost");
define("HOST","localhost");
//Put the user who has access to the database server, by default we put ("root");
define("USER","root");
//Put the user password, by default we put empty (""); 
define("PASS","");
//Put the name of the database, which has the access, by default we put "Teste";
define("BASE","Teste");
//Put the charset, by default we put "utf8";
define("CHARSET","utf8");

//Now select the type of database, for that remove the #. (You can only leave one active);
//##################################################################//
//-------------------------- PDO Firebird --------------------------//
#include("1connect/PDO_Firebird.php"); //PDO Firebird;
//-------------------------- PDO Mysql -----------------------------//
include("1connect/PDO_Mysql.php"); //PDO Mysql;
        

For you include in your project exemple.

<!DOCTYPE html>
<?php include("ProjectPath/CRUD_PHP/crud.php"); //You can use (include_once, include, require_once, require) ?>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>
    
<?php $DBconnect->getList("table", true); //List all in the table ?>
    
</body>
</html>
    

💬 Sponsors Can Chat With Us

URL: https://discord.gg/ - coming soon

✨ Sponsor UNIT3D (HDInnovations / HDVinnie)

You can support the work if you're enjoying it, it really keeps you updated to fix issues and add new features. It also helps to pay for the demo server + domain.

Monthy Recurring:

https://github.com/sponsors/maickwendelldev?frequency=recurring&sponsor=maickwendelldev

One-time Custom Amount:

https://github.com/sponsors/maickwendelldev?frequency=one-time&sponsor=maickwendelldev

🎉 Special Thanks