|
|
$fd = implode('', file('calendar.txt'));
# $fd = (ereg_replace("\n", " ", $fd));
if ($_GET['edit'] == 'calendar')
{
$spaw_root = 'spaw/';
include $spaw_root.'spaw_control.class.php';
$sw = new SPAW_Wysiwyg('spaw2' /*name*/,$fd /*value*/,
'en' /*language*/, 'default' /*toolbar mode*/, 'default' /*theme*/,
'400px' /*width*/, '400px' /*height*/);
echo '';
}
elseif ($_POST['submitted']) //write new contents of file
{
$new_content = stripslashes($_POST['spaw2']);
$myfile = fopen("calendar.txt", "w");
if (!($myfile))
die('ERROR. Could not open file for writing. Please contact your webmaster.');
fputs($myfile, $new_content);
fclose ($myfile);
echo $new_content;
}
else
{
echo $fd;
}
?>
|
| |