CODE:if (isSet($_POST['text']))
{
$file = fopen('file.txt', 'a');
fwrite($file, "$_POST[text]\n");
fclose($file);
} CODE:<form method="post" action="add.php"><input type="text" name="text"><input type="submit" value="Add"></form> (Отредактировано автором: 22 Июня, 2008 - 08:53:01) |