Hi , I want to know how can i pass html array value as a parameter to another page. I've wrote this code but didnt work, $my_array1 = array('s','d','f'); foreach ($my_array1 as $key => $value) { echo '<input type=hidden name="my_array[]" value="'.htmlspecialchars($value).'">'; } echo "<a href='Simple?action1=delete&filename=".$my_array[1]."'>Link <a>";
I don't see what's wrong with sessions, but you could serialize the data, or even use http_build_query Dan
donot need to pass whole html just pass only values check first if array thing is working When u load the page how many hidden controls you see and what values Regards Alex
Hi all , thanks for reply... I've input textbox's displayed in a table. the user can select any row and update that row in textbox and click the link <a> to update. the input textbox's displyed in a arrray. my problem is i need to pass the updated value from row textbox's to other page.