Not really sure what you mean. When a user opens a web page, Apache's main process spawns a child process to handle the request, there is no way to tell who that user is, or if it is a different user than the last one that requested the page.
I suppose you could write a shell script that does a ps and grep out the httpd processes. This would give you a count of the current apache processes. Not sure how useful this is though.