Select what cached Pages you whant to deleted!
    
  Delete Single Page Cache
If an Input-Form is submitted or the content of a Page changes, then the cache for that page will be refresht. Also you can delete single cached page manually.
    <?PHP
    include 'cache-delete.php';
  
  — or —
    <?PHP
    $_GET['del'] = 'example-cached-page.php';
    include 'cache-delete.php';
  
  DEL example-cached-page.php CACHE-FILE
  
  Delete All Pages Cache
Insert the following PHP-Code in the first line of your page or at the point where you want to empty the cache.
    <?PHP
    include 'cache-empty.php';
  
  cache-empty.php will delete all cached pages.
DEL all CACHE-FILEs
      
      You deleted the cache for all Files but not the content Files itself.