If you generate the page with PHP, that might be enough, but for extra protection you can add specific cache-disabling headers (search here on cache for some previous descriptions) or even a cache-buster argument to the page by appending a random string, e.g.:
srand( time() );
$cachebuster = rand();
<a href="/prices.php?arg=$cachebuster">Price List</a>