Session Modification


 

Session Modification

In this example you will learn how to do the session modification in PHP.

In this example you will learn how to do the session modification in PHP.

Session Modification in PHP

Session modification can be done through incrementing the loop. As the counting of loop increments, the session be modified. 

First of all, begin the session with session_start(),  set the input of the session register. 

Run the counter. 

<?php
session_start();
session_register('count');
$count++;

if ($count==1) {
$mess= "one time!";
} else {
$mess="accessed this page $count times.";
}
?>
<html>
<head>
<title>Count</title>
</head>
<body>
<?php echo $mess; ?>
</body>
</html>

The Output:

The output will be modified session.

Ads