i have a array values in hidden format
[HTML]<form name="form2" method="post" action="test.php">
<input type="hidden" name="date_val[]" value="<%= date[0] %>">
<input type="hidden" name="name_val[]" value="<%= name[0] %>"></form>[/HTML]
my question is how can i get the array values in php using array(). In foreach statement i got the result but i want to do it using array to retrive the values one by one. i want to store the hidden values in table format like this
Expand|Select|Wrap|Line Numbers
- date name
- 10-10-2008 xxxx
- 15-09-2008 yyyy
Thanks and Regards
Geethu