Skip to content

Instantly share code, notes, and snippets.

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

Robin Kardell RobinKardell

🏠
Working from home
View GitHub Profile
@RobinKardell
RobinKardell / Image.php
Last active December 14, 2015 20:19
This is just a begin code sample that will be a photogallery.
<?php
class Image{
public $_dir;
public $_thumbFolder = 'thumbs';
public $_files = array();
private $wthumb = 150;
private $hthumb = 150;
public $_total;
public function __construct($dir){