Can someone highlight me the $_SERVER variables in PHP. Is $request present in this. Share your knowledge in this discussion.
Printable View
Can someone highlight me the $_SERVER variables in PHP. Is $request present in this. Share your knowledge in this discussion.
$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the webserver.This is a 'superglobal', or automatic global, variable.
just check php info() from your package to find out what's included!!