Skip to content

Instantly share code, notes, and snippets.

View Ziiweb's full-sized avatar

Javier Garcia Ziiweb

View GitHub Profile
@Ziiweb
Ziiweb / mysql.php
Created November 8, 2018 13:31 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);
@Ziiweb
Ziiweb / dabblet.css
Created June 12, 2013 13:54 — forked from oksushi/dabblet.css
Using display: table-cell to evenly determine widths. You can add an arbitrary number of <li>
/**
* Using display: table-cell to evenly determine widths. You can add an arbitrary number of <li>
*/
ul {
padding: 0;
display: table;
width: 100%;
background: hotpink;