PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of MarPlo   Web Site Traffic and Pages Access   test.php   Download  
File: test.php
Role: Auxiliary script
Content type: text/plain
Description: Example script included in php file
Class: Web Site Traffic and Pages Access
Record visits of real users to Web site pages
Author: By
Last change:
Date: 10 years ago
Size: 815 bytes
 

Contents

Class file image Download
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Example Site Access Data</title>
<meta name="description" content="Example Site Access Data, PHP - Ajax script, from http://coursesweb.net/" />
<link rel="stylesheet" type="text/css" media="all" href="siteaccess/siteaccess_h.css">
</head>
<body>

<h1>Example Site Access Data</h1>
<br/>

<div id="siteacc">
<?php
include('siteaccess.php'); // include the file with site access data

echo $siteaccess; // show data
?>
</div>
<script type="text/javascript" src="siteaccess/siteaccess.js"></script>


<div style="margin:8em auto 2em auto;text-align:center;">PHP - Ajax script, from: <a href="http://coursesweb.net/php-mysql/" title="PHP-MySQL Course">http://coursesweb.net/php-mysql/</a></div>
</body>
</html>