Skip to content

Instantly share code, notes, and snippets.

View dhrubapuc23's full-sized avatar

Dhrubajyoti Das dhrubapuc23

View GitHub Profile
@dhrubapuc23
dhrubapuc23 / php OOP mysqliDatabaseclass.php
Created August 10, 2020 20:02 — forked from Badshah1/php OOP mysqliDatabaseclass.php
php oop mysqli database class insert,update,delete,select methods are there in given file if you have easy way then please share your methods thanks alot
<?php
class Database{
private $host="localhost";
private $username="root";
private $password="mysql";
private $database="sale";
private $DbCon;
public function connect(){