All pastes #613476 Raw Edit

Unnamed

public text v1 · immutable
#613476 ·published 2007-07-11 00:22 UTC
rendered paste body
<?php

$file = 'edit-temp.html';
$new_file = 'edit-temp1.html';

ob_start('ob_gzhandler');
echo file_get_contents($file);
$buffer = ob_get_contents();

file_put_contents($new_file, $buffer);
header('location: ' . $new_file);
?>