I have this code. Why aren't the php scripts working when executing the body onload or onunload functions?
<head>
<script language="javascript">
<?php function hello() {
$fp = fopen("counter.txt", "r");
$count = fread($fp, 1024);
fclose($fp);
$count = $count + 1;
echo "<p>Number of users online now:" . $count . "</p>";
$fp = fopen("counter.txt", "w");
fwrite($fp, $count);
fclose($fp);
alert("Welcome to My Page");
}
?>
<?php function goodbye() {
$fp = fopen("counter.txt", "r");
$count = fread($fp, 1024);
fclose($fp);
$count = $count - 1;
$fp = fopen("counter.txt", "w");
fwrite($fp, $count);
fclose($fp);
alert("Goodbye!");
}
?>
</script>
</head>
<body onload="hello()" onUnLoad="goodbye()">
</div>
</body>
</html>