Folks,
I've been reading the posts here about parsing froms with fields which have multiple values. The standard reply has been to include a [] after the form field name.
Example:
<form method="post" action="posted.php">
<input type="checkbox" name="System[]" value="One">
<input type="checkbox" name="System[] value="Two">
<input type="submit">
</form>
then on the page where i am calling System i have
<%
$System = $_POST['System']
echo $System"<br>"
%>
All I get is the word Array.
If anyone can tell me where I've fudged up on it would be appreciated.
Thanks,
I've been reading the posts here about parsing froms with fields which have multiple values. The standard reply has been to include a [] after the form field name.
Example:
<form method="post" action="posted.php">
<input type="checkbox" name="System[]" value="One">
<input type="checkbox" name="System[] value="Two">
<input type="submit">
</form>
then on the page where i am calling System i have
<%
$System = $_POST['System']
echo $System"<br>"
%>
All I get is the word Array.
If anyone can tell me where I've fudged up on it would be appreciated.
Thanks,