Hi Steve,
You get an array at the output page because the $output variable is an array of the columns you have in the table.
If you want to use a certain column you need to use either $output[column-name] or better, in the output page put
$row0 = $_SESSION['row 0'];
echo $row0[column-name1].' '.$row0[column-name2].....
Claudiu
|