TY_BCA_AWT_SLIP 22_1



22.Write a script to keep track of number of times the web page has been accessed.(Use $_SESSION[ ] )

Html file :

<html>
<head>
<title> Number of times the web page has been viited.</title>
</head>

<body>
<?php
session_start();

if(isset($_SESSION['count']))
                 $_SESSION['count']=$_SESSION['count']+1;
else
                 $_SESSION['count']=1;
                
                 echo "<h3>This page is accessed</h3>".$_SESSION['count'];
?>

No comments:

Post a Comment

Note: only a member of this blog may post a comment.