from the link to the article about adodb
while (!$rs->EOF) {
print $rs->fields[0].' '.$rs->fields[1].'<BR>';
// fields[0] is surname, fields[1] is age
$rs->MoveNext(); // Moves to the next row
} // end while
the above shows that the fields are in an array similar to the regular result for a php query
you could place them into sessions
by simply doing this
$_SESSION['eventno']=$rs->fields[0]; //first in array of values
$_SESSION['evetntech']=$rs->fields[1]; //2nd result
$_SESSION['eventdate']=$rs->fields[2]; //3rd result
or similar to the above to assign to regular variables by simply replacing the $_SESSION['varname'] with $varname
hth