Can someone give me an snipet of a code to show me how the this line of code works?
strpos($_SERVER['PHP_SELF'], $url)
I read the php manual and I found out that
strpos : gives me the the position of a needle in a heystack if it exist or returns a boolean false if it does not.
PHP_SLFE: gives the filename of the currently executing script, relative to the document root.
thank you