<< back | print

PHP in a box.php

With this script you can type any php-script you want from a box.
It's ideal for short commands and you don't have to create a php file every time.
To example if you want to delete a file you type: unlink("filename");
or to make a folder: mkdir("fildername");  :

<form action="thisfile.php" method="post">
Enter Your PHP-Code: <input type="text" name="make">
<INPUT TYPE="submit" VALUE="OK">
</form>
<?
eval(stripslashes(($make)));
print " $make ";
?>