Skip to content

Instantly share code, notes, and snippets.

View JoeRiker's full-sized avatar
🏠
Working from home

Alexandro Ghettini JoeRiker

🏠
Working from home
View GitHub Profile
@shak18
shak18 / MySQL.php
Last active September 16, 2023 14:42
Simple PHP MYSQLi Class
<?php
class MySQL {
private $link = null;
private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);
private $connection_info = array();