Quickly Run Any PHP Code Through A Form

NOTE: This bit of code is potentially very dangerous and should NOT be uploaded to your web host. I only use this function on my localhost to quickly check that a snippet of code works.

If you want to quickly run some PHP code, and don't want to have to go through creating a file just to see the outcome of a simple calculation is then this snippet might be of some use to you.

It works by taking the contents of the textarea and creating a file with the filename of 'tempcodefile.php', which contains that code. The created file is then included in order to run the code, the output of which is displayed at the top of the screen.

<?php 
error_reporting(E_ALL); 
ini_set('display_errors', 1);
?>
<html>
<head>
<title>PHP Tester</title>
</head>
<body>
<?php
if (isset($_POST['code'])) {
  $code = $_POST['code'];
  $file = fopen('tempcodefile.php', 'w');
  fwrite($file, $code);
  require_once('tempcodefile.php');
} else {
  $code = '';
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<div style="text-align:center">
<textarea rows="30" cols="150" name="code"><?php echo $code; ?>;</textarea>
<br>
<input type="submit" value="Run" />
</div>
</form>
</body>
</html>

To run this code enter some PHP code (including the PHP brackets) into the text box and click on the run button.

The first time the form is run a file will be created containing the code added to the textarea. The code file will be included and run and any output printed out to the top of the screen. Error reporting is turned on so errors are displayed at the start of the script so if you enter something that doesn't work it will tell you about it.

This script is useful if you just want to run something quickly, but beware that if you upload this to your web server you are at risk of someone running some code that will delete all the files on your site.

Add new comment

The content of this field is kept private and will not be shown publicly.
CAPTCHA
3 + 11 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.