Well... I might sound stupid now but you have an error in your code:
print("$Testing, testing");
should be:
print("$testing, testing");
So no capitals because then it becames a different variable 🙂
And yes, you have to have session_start() in every page or the session is lost.
BTW, a quick way to see that $SESSION array is populated is to use print_r($SESSION).