In the context of a form without a submit button, I am not understanding why the $_POST variable doesn't get set. Here is my code:
<?php
$view="blablabla";
?>
<form class="" method='POST' accept-charset="UTF-8" action='index.php'>
<p>
<textarea rows="4" cols="60" name='article' id='article' WRAP=SOFT>
<?php
echo $view;
?>
</textarea>
</p>
<p>
<input type="button" name='do1' id='do1' value="do 1"/>
<input type="button" name='do2' id='do2' value="do 2"/>
</p>
</form>
<?php
var_dump("POST :",$_POST);
?>
Shouldn't the var_dump show a value to $_POST once I click one of the 2 buttons?