| 
<?php
 if (isset($_POST['submit'])) {
 $url = $_POST['url'];
 
 if (! trim($url)) {
 header('LOCATION: index.php?e=' . urlencode('No URL Specified'));
 exit;
 }
 
 $contentonly = isset($_POST['content']) ? true : false;
 $keepjs = isset($_POST['javascript']) ? true : false;
 $compress = isset($_POST['compress']) ? true : false;
 
 # include the class
 require_once 'includes/htmlSaveComplete.php';
 $htmlSaveComplete = new htmlSaveComplete($url);
 $html = $htmlSaveComplete->getCompletePage($keepjs, $contentonly, $compress);
 
 if (! $html) {
 header('LOCATION: index.php?e=' . urlencode('Error saving the page, please try again later.'));
 exit;
 }
 
 file_put_contents('output.html', $html);
 header('LOCATION: index.php?s=1');
 exit;
 }
 else {
 header('LOCATION: index.php');
 }
 |