Программирование > PHP
Траблл
Wowik:
<?php
$date=date("d-m-Y G:i:s");
$body=ereg_replace("\\n", "
", $body);
$message=
\'<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" \'.
\'width="98%" height="250" align="center"> \'.
\'<tr> \'.
\'<td class=subject width="100%" height="18" colspan="2" bgcolor="#808080"> \'.
.$topic.
\'</tr> \'.
\'<tr> \'.
\'<td class=news valign=top width="587" height="100%" colspan="2" background="images/fon1.gif"> \'.
.$body.
\'</td> \'.
\'</tr> \'.
\'<tr> \'.
\'<td class=data height="18" align="left" bgcolor="#808080"> \'.
.$date.
\'</td> \'.
\'<td class=autor height="18" width="80%"> \'.
.$name.
\'</td> \'.
\'</tr> \'.
\'</table> \'.
\'<hr size="1"> \';
$message=stripslashes ($message);
$file = fopen($data, "r+t");
$content = fread($file, filesize($data));
$content=$content.$message;
rewind($file);
fwrite($file, $content);
fclose($file);
echo $message;
echo(\'<hr><a href=index.php>Просмотр</a>\');
?>
Навигация
Перейти к полной версии