Skip to content

Instantly share code, notes, and snippets.

View mdboom's full-sized avatar

Michael Droettboom mdboom

View GitHub Profile
@mdboom
mdboom / evaluate-php.js
Last active March 18, 2019 12:36 — forked from filips123/evaluate-php.js
Iodide with PHP
const PHP_MODULE = 'https://oraoto.github.io/pib/php.js'
const loadResource = url => new Promise((resolve) => {
const head = document.getElementsByTagName('head')[0]
const theScript = document.createElement('script')
console.log("window.PHP " + window.PHP)
theScript.src = url;
theScript.onload = () => {