Hi
i have a array values in hidden format
[HTML]<form name="form2" method="post" action="test.ph p">
<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
in this format i want to print the array values. please any one help to solve this.
Thanks and Regards
Geethu
i have a array values in hidden format
[HTML]<form name="form2" method="post" action="test.ph p">
<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
Code:
date name 10-10-2008 xxxx 15-09-2008 yyyy
Thanks and Regards
Geethu
Comment