will that work tho?
because the whole idea is that the name of the var is dynamic...
and if its dynamic, i have to recall it again...
and i dont knowhow to >_<
the full code im using (but doesnt work) is meant to update using session vars, wether or not a forum post is updated, old, or new...
so, if i use just "session_register("varname");" i run into the same problem...
i can't make the name of it dynamic.
it'd need to be:
$thisid = $row['id'];
session_register("forumlastseen_$thisid");
which wouldn't work...
arrgh
wait... what about...
while (... ...) {
$moo = "forumlastseen_". $thisid;
session_register("moo");"
}
does that set the NAME moo? or the value forumlastseen_$thisid as name?