forexample, i have this code:
<input type="text" name="width[]">
<input type="text" name="width[]">
<input type="text" name="width[]">
<input type="text" name="width[]">
<input type="text" name="width[]">
<input type="text" name="width[]">
How can I read this value by javascript array. I could do that using php like this;
<?
$values=$_POST['width'];
foreach($values as $value){//each value}
?>
the javascript variable's each value should be accessible using loop.