There are basically two types of definitions for the term page view .
From a technical point of view, it can represent the times the page has been requested by a web browser. This can be interesting information if you have to optimize your application s code, but it has little to no value for the visitors of your site.
The thing that visitors are more likely to be interested in, is the number of people that have viewed the page. Although you cannot exactly measure this, you can get a good approximation by treating multiple requests within a session as a single view. If your application allows visitors to log in, you can even treat all requests by a single user as one page view, regardless of when the requests were made.
Since you will be presenting the number of views on the page, you ll probably want the number of people that have viewed the page, rather than the number of requests.