<?php
$ua_version = '0.1';
/*
user-agent.php
your browser's "HTTP_USER_AGENT" value in PLAIN TEXT
simple
;o)
corz.org 2000
*/
// handy for scripts, lots of things..
header('Content-Type: text/plain; charset=utf-8');
echo @$_SERVER['HTTP_USER_AGENT'];
?>