PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
If I wanted to use session variables in a function would I still need to use the global call ( example.. global$my_session_var; ) or are session variables global by default?
So.... I guess I would need to use the global method because when I first start my sessions I do something like.. session_register("my_session_var");
$my_session_var = "some value";