Skip to content

Instantly share code, notes, and snippets.

@nicocedron
Created March 4, 2016 19:57
Show Gist options
  • Save nicocedron/a04b67c532f2bb49118a to your computer and use it in GitHub Desktop.
Save nicocedron/a04b67c532f2bb49118a to your computer and use it in GitHub Desktop.
PHP Web Console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Consola improvisada</title>
</head>
<body>
<?php if(isset($_POST['code'])) { ?>
Result:
<div>
<?php eval($_POST['code']); ?>
</div>
<?php } ?>
<form method="POST">
<h4>Code:</h4>
<textarea name="code" id="" cols="30" rows="10"><?php echo $_POST['code']; ?></textarea>
<div>
<input type="submit" value="RUN!">
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment