I want to put the result of an array in a text box but instead of put the value it put Array[].
Here is the code:
$i=0;
while($row=mysql_fetch_row($result)){
for($j=0;$j<3;$j++){
$arreglo[$i][$j]=$row[$j];
}
$i++;
}
echo" <p align='left' size='10'><font color='#99CCFF' size='5'> Fecha: <input type='text' name='fech' value=$arreglo[0][1] size='12'></font>";
Any help would be appreciate.