Hi,
I have this code to track my page access . How do I refine it to track record access please ?
Most of my forms have the foll. info. in form action so I would like $page below to also indicate the record accessed .
<FORM action="travel_expenses.php?advanceid=<? echo $advanceid ?>&enquiryid=<? echo $enquiryid ?>&visitid=<? echo $visitid ?>&userid=<? echo $userid ?>&id=<? echo $id ?>" method="post">
Currently,
$page only indicates \travel_expenses.php and not the rest of the data which is really what i am interested in tracking.
<?php
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
$ip = GetHostByName($hostname);
$message="$ip";
$t1 = date('Y-m-d H:i:s');
$page = $_SERVER['PHP_SELF'];
?>
<?php
mysql_connect("localhost", $dbname, $dbpasswd )
or die ("Unable to connect to server.");
mysql_select_db($database)
or die ("Unable to select database.");
$sqla = "INSERT INTO `Log` (userid, date, ip, page) VALUES ('$userid', '$t1', '$message', '$page')";
//echo $sqla;
$resulta = mysql_query($sqla)
or die (mysql_error());
Thanks !