My question is about array.
$arr = array(0 => "2", "0", "1", "3", "4", "5", "6", "6");
$arrstr["userpriority"] = array(0 => "2", "0", "1", "3", "4", "5", "6", "6");
$fromint = 0;
$toint = 7;
for ($i = $fromint; $i <= $toint; $i++) {
echo "Class-$arr[$i]";
echo "Class-$arrstr[\"userpriority\"][$i]";
}
The first "echo" work.
The second "echo" fail to parse.
How to fix this problem?