Help with checkbox
Posted: Wed Jan 26, 2011 10:42 am
Hello
This is the code for a checkbox, the results shall be within a form, but what I want to know is how do I get the address of the checkbox results in a description?
I would also create a button to increase the checkbox available, so having a button that gives me the ability to create value.
I do not know much php, I am learning, and I need a hand to write this code.
I thank those who can give me some help.

This is the code for a checkbox, the results shall be within a form, but what I want to know is how do I get the address of the checkbox results in a description?
Code: Select all
<html>
<head>
<title>Color</title>
</head>
<body>
<h1>LIST CHECKBOX</h1>
<p>
<form method="post" action="recuveraCheckbox.php">
<input type="checkbox" name="myCheck[a]" value="Green" /> Valore A
<br />
<input type="checkbox" name="myCheck[b]" value="Red" /> Valore B
<br />
<input type="checkbox" name="myCheck[c]" value="Black" /> Valore C
<br />
<input type="submit" value="submit form" />
</form>
</p>
</body>
</html> I would also create a button to increase the checkbox available, so having a button that gives me the ability to create value.
I do not know much php, I am learning, and I need a hand to write this code.
I thank those who can give me some help.