Skip to content

Instantly share code, notes, and snippets.

View Badshah1's full-sized avatar

Badshah Sahib Badshah1

View GitHub Profile
@Badshah1
Badshah1 / php OOP mysqliDatabaseclass.php
Created April 4, 2015 13:26
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(){