I'm not sure if this is expected behavior. But if I host the following on my server
<?php
print $stackoverflow;
?>
And I have another example.html which contains:
<form action="http://pinguincyb.org/roc/opdracht1/lawl.php" method="POST">
<input type="text" name="stackoverflow" value="example">
<input type="submit" value="Submit">
</form>
The page prints 'example', is this normal behavior? Shouldn't that data be unavailable until I would do something like
$stackoverflow = $_GET["stackoverflow"];