S
shareparadise
I didnt realize that I get the reference of the array, not the array
itself (so stupid I am), anyway I got it working now:
$table = eval $temp or die "eval of $temp failed with $@";
# Try to print out some sample data
for ($i=0; $i<13; $i++){
for ($j=0; $j<7;$j++){
print ($table->[$i]->[$j]);
print (" ---- ");
}
print ("<br>");
}
itself (so stupid I am), anyway I got it working now:
$table = eval $temp or die "eval of $temp failed with $@";
# Try to print out some sample data
for ($i=0; $i<13; $i++){
for ($j=0; $j<7;$j++){
print ($table->[$i]->[$j]);
print (" ---- ");
}
print ("<br>");
}