Hi all,
i'm doing a searching page, where results will be shown and there will be a check box for each row on left (similar to yahoo and gmail) all results together work as a form however each row can be controlled individually which means another form inside the main form.

i'm stuck here, how can i solve this please.
basically i only need to know which checkbox is checked from my main form, i have no problem in the sub forms

anyway that could solve this problem for me will be greatly appreciated

regards

You can't have a nested form (and I don't know what you mean by a sub-form or what you plan to do with it) but if your objective is to know which check boxes have been checked, then the name assigned to each checkbox should have a consistent part and an index number. as an example:

<form ... >
<input type=checkbox name=selectme1 value=1>
<input type=checkbox name=selectme2 value=2>
...
<input type=submit name=submit value=submit>
</form>

In the module that processes the form, you could just process each one individually or you can do it in a loop:

$i=1;
while ($_POST[selectme$i] <> "") {
  ...
  $i++;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.