k. Im using the function below to include my file:
<?php include("path or url to file"); ?>Well than I also wanna put these codes somehow will it or include other files.
I was wanting to use this script to detect users browser:
<?php echo $_SERVER["HTTP_USER_AGENT"]; ?>Detect users ip:
<?php echo $_SERVER["REMOTE_ADDR"]; ?>Display Referrer:
<?php echo $_SERVER['HTTP_REFERER']; ?>Load Time:
Page loaded in
<?php $load = microtime(); print (number_format($load,2)); ?>I was wanting to combine those all in one somehow without interfering.
Matta