Skip to content

Instantly share code, notes, and snippets.

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

Jonathan Sánchez jonathansanchez

🏠
Working from home
View GitHub Profile
@jonathansanchez
jonathansanchez / mandril.php
Created January 8, 2018 19:35
How to use Handlebars in Mandrill PHP
<?php
//This API https://bitbucket.org/mailchimp/mandrill-api-php
require_once 'mandrill-api-php/src/Mandrill.php';
function send($data) {
try {
$mandrill = new Mandrill('YOUR_API_KEY');
$message['to'][] = array(
@jonathansanchez
jonathansanchez / Regiones_Comunas.sql
Created December 26, 2017 19:59
Regiones y Comunas de Chile
CREATE TABLE `region` (
`code` int(11) NOT NULL,
`name` char(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `comuna` (
`name` char(255) DEFAULT NULL,
`region` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;