Skip to content

Instantly share code, notes, and snippets.

View Fobiya's full-sized avatar
:octocat:
I may be slow to respond.

Fobiya

:octocat:
I may be slow to respond.
  • Kiev Ukraine
View GitHub Profile
@Fobiya
Fobiya / dabblet.css
Created November 8, 2016 12:55 — forked from voidove/dabblet.css
checkbox
/**
* checkbox
*/
input[type=checkbox] {
opacity: 0;
}
input[type=checkbox]+label {
position: relative;
margin-left: 20px;
}
@Fobiya
Fobiya / MultipleEmailAttachments.php
Created September 16, 2016 08:20 — forked from optikalefx/MultipleEmailAttachments.php
Multiple Email Attachments PHP from scratch
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
if(isset($_FILES) && (bool) $_FILES) {
$allowedExtensions = array("pdf","doc","docx","gif","jpeg","jpg","png","rtf","txt");
$files = array();