I finally decided to try my hand at sessions. Like i figured, it didnt work. What I was hoping for is that after a user (me to test it) logged in, it would save the username, $username for the session. here is the code i used related to the session stuff....
<some login script stuff>
session_start;
session_register($username);
on the next page, i simply want it to say at the top
echo "thanks for stopping again $username";
so here was the code for that one
<usual starting stuff>
session_start;
echo "thanks for comming back $username";
all I get back is
thanks for comming back
is there something i'm missing