0
What does '.$_SERVER' means in php
Using postgresql
2 Antworten
+ 1
FOLLOW ME
$_SERVER
$_SERVER is an array that includes information such as headers, paths, and script locations. The entries in this array are created by the web server.
$_SERVER['SCRIPT_NAME'] returns the path of the current script:
0
👍