hi,
closing the browser is a client side job, and php is server side. so no direct way by which php can close the browser window. what can be done is make php spit out javascript code that can do the job
someting like:
echo "<script>window.close</script>";
steve