Forum Moderators: coopster
Isn't there a variable you can put in the url to make the phpinfo page showup on the current page your viewing?
You could set up a site that would do this, but you would be giving away an awful lot of info to hackers.
Typically, I set a constant called "DEBUG" which is defined in an include along with other server-specific variables. If set to true, I get all sorts of info out, perhaps including phpinfo() output, but it is only set to true briefly if ever on a live server while actively debugging.
Tom