Така нека започваме.Първо направете си както винаги файлът, който се отваря първи от браузарът, а именно index.php .След като го направите влезте в него и напишете този код (можете и да го копирате, но като го пишете има голяма вероятност да разберете логиката).
-------------------------------------------------------------------------------------------------------------
<!doctype html WC3>
<html>
<head>
<title>Comment</title>
<link rel=StyleSheet href="style.css" />
<style type="text/css">
#something {
width: 600px;
height: 400px;
background-color: #000 repeat scroll 0 0 transparent;
border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 10px #000000;
margin-left: auto;
margin-right: auto;
text-align: center;
}
textarea {
resize: none;
}
.comments {
text-align: center;
background-color: #000 repeat scroll 0 0 transparent;
border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 10px #000000;
margin-top: 30px;
width: 700px;
margin-left: auto;
margin-right: auto;
font-family: Forte;
}
#comment {
margin-top: 50px;
}
.com {
margin-top: 47px;
}
</style>
</head>
<body>
<div id="something">
<div id="think">
</div>
<div id="comment">
<b>Комент Система</b>
<form method="POST" action="post.php" a="TheScript">
<textarea maxlength="111" name=" " maxlenght="80"></textarea>
<div id="submit">
<input type="submit" value="Коментирайте" />
</div>
</form>
</div>
</div>
</body>
</html>
<div class="comments">
-------------------------------------------------------------------------------------------------------------
Сега нека направим файлът post.php .Направете си го и след това препишете следният код..
-------------------------------------------------------------------------------------------------------------
<?php
$handle = fopen ("index.php","a");
foreach ($_POST as $variable => $value){
fwrite($handle,$variable);
fwrite($handle, nl2br($value));
fwrite($handle, "<p>");
fwrite($handle, "rn");
}
fwrite ($handle, "rn");
header ('Location:index.php');
?>
-------------------------------------------------------------------------------------------------------------
Честито ! Вече сме готови с нашата форма за коментиране !! Можете да видите демо преди да започнете как изглежда от тук - http://simple-craft.no-ip.info/tutorials/comment .Дано да сам ви помогнал.Всички права са запазени.Копирането и качването в други сайтове е забранено!