Recientemente escribí este código:
<?php
$path = '../data/about.html';
$handle = fopen($path, 'w') or die('Cannot open file: '. $path);
$data = $_POST['name'];
fwrite($handle, $data);
fclose($handle);
header("Location: warnings.php")
?>...
hecha
06.02.2017 - 23:19