• File: remove_data.php
  • Full Path: /home/sema-files/web/semafiles.configured.cc/public_html/pge/panel/actions/remove_data.php
  • Date Modified: 09/21/2024 2:57 PM
  • File size: 191 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
$filename = '../get-panel/info-panel.txt';

if (file_exists($filename)) {
    // Truncate the file to remove data
    $file = fopen($filename, 'w');

    fclose($file);
} 
?>