Hi I am trying to submit a form but when I do:
var_dump($_POST);
I get: Array(0) { }
<form action="avvikelse.php" method="POST" />
<p>Operation step: <input type="int" name"operation_step" /></p>
<p>Problem detail: <input type="text" name"problem_detail" /></p>
<input type="submit" value="Submit" />
</form>
Why?
Thank you!
The HTML in your form is malformed.