Hello guys,
I know this should be an easy one, but I'm failing to make it work. I have the following form:
<form action="" method="post">
<input type="checkbox" name="blades[]" value="2" />Blade AM-01 <br />
<input type="checkbox" name="blades[]" value="5" />Blade AM-02 <br />
<input type="checkbox" name="blades[]" value="10" />Blade KT-24 <br />
<input type="checkbox" name="blades[]" value="1" />Blade FR-98 <br />
<input type="checkbox" name="blades[]" value="66" />Blade PR-11 <br />
</form>
After submit I want to display the form again and to check the checkboxes that the user has selected before submission. My language of choice is PHP.
Thanks.