<?php
if (isset($_POST['change_css'])) {
$style = $_POST['style'];
$path_to_config = 'config.txt';
$fp = fopen($path_to_config, 'w');
fwrite($fp, $style);
fclose($fp);
echo '<p style="color: #008000">Стиль сохранен</p>';
}
?>