I'm new to php and programming to be honest with you, so please keep it simple....
I have the following session code stored in a mysql DB as a text entry
$SESSION['part'][4] = 1;
$SESSION['part'][5] = 1;
$_SESSION['part'][6] = 1;
I have done this so a can retrieve this information ($row->part) and run it again - i.e. reactivating the session values... can someone please help me.. how can i run the row value( $row->part) so that the session are activated...
thanks Gareth