. means this directory
.. means parent directory
/ is a directory separator (for Linux / Unix)
When used, include "file.php";php will look in the current directory and in its configured include path for the file namedfile.php
When using include "./file.php";php it will look in the current directory (and only there) for a file namedfile.php
include "../file.php";, php file.php