you need to do:
<pre>
<input type='hidden' name='guys[]' value='Bob'>
<input type='hidden' name='guys[]' value='Lary'>
<input type='hidden' name='guys[]' value='Joe'>
</pre>
and on php side, when the form is submitted, you can get this data via $_REQUEST['guys'] (which will be array). so your output will be:
<pre>
$REQUEST['guys'][0] => Bob
$REQUEST['guys'][1] => Lary
$_REQUEST['guys'][2] => Joe
</pre>
regards,
Daarius...