The table says it clearly:
Quote:
a:5:{i:0;s:0:"";i:1;s:2:"38";i:2;s:0:"";i:3;s:1:"4 ";i:4;s:2:"78";}
|
5 items are in array. Values are at item 2, 3 and 4 (counting from 0)
Theorically seems easy to reinsert those values in same array textboxes
so why is this not doing the job?
PHP Code:
$predminutes1=unserialize($getplayers1['minutes1']);
for( $i=0; $i < count($predminutes1);$i++) {
//echo $predminutes1[$i];
$minutes1="<input type=\"text\" name=\"predminutes1[]\" value=\"$predminutes1[$i]\" size=\"10\">";
}