Created
March 4, 2016 19:57
-
-
Save nicocedron/a04b67c532f2bb49118a to your computer and use it in GitHub Desktop.
PHP Web Console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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