<html>
<head>
<title>my site</title>
<meta http-equiv="imagetoolbar" content="no" /><meta name="author" content="Richard Summers" />
<meta name="copyright" content="Richard Summers" />
<meta name="date" content="01-01-2008" />
<meta name="content-language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?php
######################################################
// This script will add a counter on your website
// First thing is first, we need to define where the
// data is
$file = fopen("counter.txt","r+");
// Open the file R+ (read and write)
$get_data = fread($file,512);
// Read the counter.txt
$new_data = $get_data + 1; // Adds 1 to the counter
echo $new_data; // Echo the Counter
fseek($file, 0) ;
//Go back to line 1 in our counter file
fwrite($file, $new_data) ;
// Save the new data
fclose($file) ;
//closes the file
?>
<center>
<img src="title.jpg" alt="Title" border="0" />
<br>
<img src="videobox.jpg" /img>
<br>
<img src="techniques.jpg" /img>
<br>
<img src="benefits.jpg" /img>
<br>
<img src="store.jpg" /img>
<br>
<img src="contact.jpg" border="0" usemap="#Map" /img>
<map name="Map" id="Map">
<area shape="rect" coords="28,52,568,138" href="mailto:
[email protected]" alt="E-mail Richard" />
</map>
</center>
</body>
</html>