hi i'm trying to change code for a site to make it work with register_globals off.
I pass data from forms via POST in arrays.
Can I get access to the data if register globals are off.
I tried this
$name = $_POST['field_name_arr[0]'];
but it doesn't work!
---///
here is an example of the code.
<form name="update_btv_incs" method="post" action="update_btv_incs.php?iona=bfl">
<INPUT TYPE="hidden" name="seshid" value="26ae95962314b209b7ca6d9dbd65180d">
<br/>
<input type="text" name="field_name_arr[]" id="name"
value="" SIZE="40">
<br/>
<label for="creator"> <strong>Creator : </strong></label>
<br/>
<input type="text" name="field_name_arr[]" id="creator"
value="" SIZE="40">
<br/>
etc....
--//
any pointers to things that can help??