what are the advantages or dis, of using the session_is_registered() function in my conditional statement, instead of using the isse() function? which one should i be using? for checking session vars?
session_start();
session_register("open_files");
if (! isset($open_files)){
$open_files = array ();
}
if (! isset($open_files[$ID])){
$open_files[$ID]=file("$text_dir/$ID");
}