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
$foo = 'bar';
?>
<?php
include ('test.inc');
print $foo;
?>
bar
<?php
$foo = 'bar'
?>
<?php
$foo = 'foo';
include ('test.inc);
print $foo;
?>
<?php
session_start ();
include ('test.inc');
print $_SESSION['foo'];
?>
<?php
if (!array_key_exists('foo', $_SESSION))
{
print "Initializing foo: ";
$_SESSION['foo'] = 10;
}
else
{
print "Incrementing foo: ";
$_SESSION['foo']++;
}
?>