View Single Post
  #2 (permalink)  
Old 09-21-2007, 02:21 PM
clau clau is offline
Boss Cart Support
2 posts this year. needs some grease!
New user, who has not interacted much yet.
 
Join Date: Apr 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default

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
Reply With Quote