Ocena wątku:
  • 0 głosów - średnia: 0
  • 1
  • 2
  • 3
  • 4
  • 5
Komentarze na strone
#1
Wszędzie jest napisane, że jest to prosty skrypt ale ja go wstawić nie umiem;/

Kod:
<?
/*

annotate.php3

This is a module that can be placed on any php3 page to allow users to add
their comments. The comments are stored in a file in the current directory,
whose name is constructed by adding ".comment" to the calling page's name,
and merged into the calling page dynamically. (The calling page is not
modified.)

I wrote this because I wanted a simple way to add this functionality to my
pages without requiring that mySQL be available.

In the message input, blank lines are converted to paragraph tags. No other
conversions are applied. If you don't want your users to be able to input
html, uncomment the "strip_tags" line.

Note that the directory must be writable by the web server.

Put this module in some convenient location and then embed it in your pages
like so:

require("/some/full/path/annotate.php3");
or, relative to the docroot:
require($DOCUMENT_ROOT . "/relativepath/php3");

Steve Yelvington <[email protected]>

*/
if ($message)
    {
    /* uncomment the next two lines to strip out html from input */
    /* $name = strip_tags($name); */
    /* $message = strip_tags($message); */
    $message = ereg_replace("\r\n\r\n", "\n<P>", $message);
    $date = date("l, F j Y, h:i a");
    $message = "<B>$name </B> -- $date<P> $message <BR><HR>";
    $fp = fopen (basename($PHP_SELF) . ".comment", "a");
    fwrite ($fp, $message);
    fclose ($fp);
    }
@readfile(basename(($PHP_SELF . ".comment")));
?>
<FORM method="post">
<b>Your name:</b><BR><INPUT name="name" type="text" size="55"><BR>
<b>Your comment:</b><BR><TEXTAREA name="message" rows=10 cols=55 wrap=virtual>
</TEXTAREA><BR>
<INPUT name="submit" type="submit" value="Post your comments">
</FORM>

</body>
</html>

Co wstawić na stronę pod artykułem? Co wgrać na serwer?
Odpowiedz


Wiadomości w tym wątku
Komentarze na strone - przez Dawcio - 22-01-2009, 16:30
RE: Komentarze na strone - przez Jupiter - 22-01-2009, 20:57

Podobne wątki…
Wątek: Autor Odpowiedzi: Wyświetleń: Ostatni post
  Wejscie na strone JollyCube 3 3,025 23-12-2010, 13:03
Ostatni post: trak
  Jednorazowe wejscie na strone JollyCube 6 4,610 05-09-2010, 15:13
Ostatni post: dziamber
Question Komentarze w PHP - książka xpeye 7 4,789 22-03-2010, 22:47
Ostatni post: KowR
  [PHP] komentarze podzielone na strony Yarekk 1 2,787 26-04-2008, 21:42
Ostatni post: Radek

Skocz do:


Użytkownicy przeglądający ten wątek:
Sponsorzy i przyjaciele
SeoHost.pl