Why is $_POST is temporarily disabling my server?
I've never been the best with post titles.
The following script is disabling my server and I can't figure out how or why.
PHP Code:
<?php $h=$_POST['fname'];
?>
<form action="/test.php" method="post">
First name: <input type="text" name="fname" value="test">
<input type="submit" value="Submit">
</form>
test.php is the location for the above script.
The above script works great for pretty much anything, but if I input the following text into the input field, the server just shuts down/breaks for nearly a full minute.
Code:
<?php
##system();
?>
The above should be junk code, but my server does not like it at all.
Any ideas?