What’s the difference between $_SERVER['PATH_INFO']
and $_SERVER['ORIG_PATH_INFO']
? How do I use them?
When I run print_r($_SERVER)
, PATH_INFO
and ORIG_PATH_INFO
are not present in the array. Why not? How can I enable them?
I have read the PHP manual on them, but still don’t understand them.