Is that me or there are only session variables in php? Is there any application variables or do i have to store all variables in a file if i want them to be accessible for all the application (by application, i mean each page of the site)?
Well not to sure what you mean php does have some of it's own varibles like phpself or I guess you may be asking if you have to retype all your varibles you could just use and include statement include('john.php'); something like that maybe and just put that in the php document that u need to reference those varibles
If you're talking about ASP-type "application" variables, then no. PHP does not use the concept of an "application" the same way that IIS does.
-- Rich