//collect information...
$browser =$_SERVER['HTTP_USER_AGENT']; // get the browser name
$curr_server = $_SERVER['SERVER_NAME'];
$curr_page = $_SERVER['REQUEST_URI'];// get page name
$ip = $_SERVER['REMOTE_ADDR']; // get the IP address
$from_page = $_SERVER['HTTP_REFERER'];// page from which visitor came
//Insert the data in the table...
$query_insert ="INSERT INTO statTracker
(browser,ip,thedate_visited,page,from_page) VALUES
('$browser','$ip',now(),'$curr_page','$from_page')" ;
$result=@mysql_query ( $query_insert);
if(!$result){
echo mysql_error();
}
//echo $curr_page;
//remove this section when attaching the script to a webpage
//I include it only because of it's debug value.
?>
Donut Press - authors
W. S. Graham
William Sydney Graham (1918-1986) was born and brought up in Greenock, Scotland, and trained as an engineer. He eventually settled in Cornwall, where a growing colony of experimental artists came to respect the determination and acute self-criticism with which he pursued his work. Artists Sven Berlin, Terry Frost, Wilhelmina Barns-Graham, Patrick Heron, Roger Hilton, Peter Lanyon and Bryan Wynter were among many friends who shared their landscape with him. In 1948 T.S. Eliot asked Graham to join the Faber and Faber poetry list, and the company have remained his primary publisher. Since his death, the importance of Graham’s achievement has been widely acknowledged. Key posthumous works are New Collected Poems (Faber & Faber, 2004) and The Nightfisherman – Selected Letters of W.S. Graham (Carcanet Press, 1999). Links to both publishers can be found on our links page.