Skip to content

Instantly share code, notes, and snippets.

@Kodmit
Kodmit / index.php
Last active January 25, 2020 22:02
Simple PHP file downloader outside webroot with login
<?php
session_start();
class Manager
{
const PATH = '/home/kodmit/Documents/TESTS/777/';
public function __construct()
{
if (!isset($_GET['download'])) {
@Kodmit
Kodmit / belgium_array.php
Created May 19, 2019 15:24
PHP array of Belgium provinces
$belgium = [
'VAN' => 'Anvers',
'VLI' => 'Limbourg',
'VOV' => 'Flandre-Orientale',
'VBR' => 'Brabant flamand',
'VWV' => 'Flandre-Occidentale',
'WBR' => 'Brabant wallon',
'WHT' => 'Hainaut',
'WLG' => 'Liège',
'WLX' => 'Luxembourg',
@Kodmit
Kodmit / switzerland_array.php
Last active May 19, 2019 15:22
PHP array of Switzerland cantons
$switzerland = [
'ZH' => 'Zurich',
'BE' => 'Berne',
'LU' => 'Lucerne',
'UR' => 'Uri',
'SZ' => 'Schwytz',
'OW' => 'Obwald',
'NW' => 'Nidwald',
'GL' => 'Glaris',
'ZG' => 'Zoug',