I have a small custom 404 page in PHP. When this page is triggered I'd
like some information about the requesting client, including its reverse
IP. I would like the 404 page to be returned to the client's browser
immediately, after invoking another function or script that takes care
of the lookup & email duties. The 404 page doesn't care about the return
value of the second script at all, it's fine if it fails. It looked to
me like exec() is appropriate here, is that correct? Am I thinking about
it wrong?
Thanks.
like some information about the requesting client, including its reverse
IP. I would like the 404 page to be returned to the client's browser
immediately, after invoking another function or script that takes care
of the lookup & email duties. The 404 page doesn't care about the return
value of the second script at all, it's fine if it fails. It looked to
me like exec() is appropriate here, is that correct? Am I thinking about
it wrong?
Thanks.
Comment