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
session_start();
$_SESSION['run_counter'] = 1;
$_SESSION['values'] = array
(
'1234567890123...01234567890
.
.
.
1234567890123...01234567890',
'1234567890123...01234567890
.
.
.
1234567890123...01234567890',
'1234567890123...01234567890
.
.
.
1234567890123...01234567890',
'1234567890123...01234567890
.
.
.
1234567890123...01234567890',
'1234567890123...01234567890
.
.
.
1234567890123...01234567890',
'1234567890123...01234567890
.
.
.
1234567890123...01234567890'
);
print '<html><body>
<a href="test_bar.php">click here</a><br><pre>';
print_r ($_SESSION['values']);
print '</pre></body></html>';
?>
<?php
session_start();
$_SESSION['run_counter']++;
print '<html><body><pre>';
print 'Run counter: ' . $_SESSION['run_counter'] . "\n";
print_r ($_SESSION['values']);
print '<pre></body></html>';
?>