<?php
session_start();
if(isset($_SESSION['views']))
$_SESSION['views']=$_SESSION['views']+1;
else
$_SESSION['views']=1;
echo "Views=". $_SESSION['views'];
echo '<br>'."<a href='destroy.php'>Set Counter1</a>";
?>
the above code was maintaining a counter, each time when user will refresh page it will increment. i want to do same work but with javascript but can't find anything online help plz