Jump to content
  • 0

Проблема с гостевой


Pavel_html
 Share

Question

Всем привет. Вот вздумалось мне написать госевую книгу на php. Ну сел и начал писать. Дело в том что я хочу чтоб эта госевая книга была на файлах. Вот код обработчика:

Код обработчика

<?php
if($_POST["name"]==""){
print "Вы не ввели имя
";
}
if($_POST["e-mail"]==""){
print "Вы не ввели свой e-mail
";
}
if($_POST["msg"]==""){
print "Вы не ввели сообщение
";
}
$gost=$_POST["name"],$_POST["e-mail"],$_POST["msg"];
$fp=fopen("baza.txt","a");
fputs($fp, $gost);
fclose($fp);
print "Нам написали:
";
readfile("baza.txt")
?>

А вот код гостевой:
Код
<html>
<head>
<title></title>
</head>
<body>
<form action="gostev.php" method="post">
<h2>Гостевая книга</h2>
Ваше имя<input type="text" name="name">


Ваш e-mail<input type="text" name="e-mail">


Ваше сообщение
<textarea cols="30" rows="10" name="msg">
</textarea>

<input type="submit" value="Отправить">
</form>
Нам написали:
<?php
readfile("baza.txt")
?>
</body>
</html>

Сама гостевая находиться по адресу: http://www.clubunnatov.spb.ru/gost.php

Link to comment
Share on other sites

Recommended Posts

  • 0

................................................................................................................................................................

А я думал что вы знаете

................................................................................................................................................................

Link to comment
Share on other sites

  • 0

Лично я знаю.

Но переписывать я ничего не буду.

У тебя есть только форма, а обработчика нет. Ты не знаешь как использовать функции.

Читай мануалы. Разобрать проблемы - мы поможем, а писать за тебя никто ничего не будет, тем более такие избитые вещи.

Link to comment
Share on other sites

  • 0
<?php
if(empty($_POST['name']))
{
die('Вы не ввели имя');
}

if(empty($_POST['e-mail']))
{
die('Вы не ввели свой e-mail');
}

if(empty($_POST['msg']))
{
die('Вы не ввели сообщение');
}
$gost = $_POST['name']."rn".$_POST['e-mail']."rn".$_POST['msg']."rn";
$fp = fopen('baza.txt','a+');
fputs($fp, $gost);
fclose($fp);
echo 'Нам написали:
', $gost;

?>

Link to comment
Share on other sites

  • 0

Все. Вот готовый код:

<?php
if(empty($_POST['name']))
{
die('Вы не ввели имя');
}

if(empty($_POST['e-mail']))
{
die('Вы не ввели свой e-mail');
}

if(empty($_POST['msg']))
{
die('Вы не ввели сообщение');
}
$gost = "<b>Имя: </b>".$_POST['name']."
"."<b>E-mail: </b>".$_POST['e-mail']."
"."<b>Сообщение: </b>".$_POST['msg']."
"."<hr>";
$fp = fopen('baza.txt','a+');
fputs($fp, $gost);
fclose($fp);
echo 'Нам написали:
', $gost;

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy