Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
PHP Online Manual said:Explode
Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter. If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string.
$password = $_SESSION['password'];
$username = $_SESSION['username'];
if(isset($_SESSION['userame'])){
[green]//Do something if the session variable username is set.[/green]
}
if($_SESSION['username']=="myusername"){
[green]//Do something if the session variable username matches a string or another variable.[/green]
}