0

したがって、私はphpが得意ではなく、comments.phpファイルを呼び出して書き込む基本的なコメントシステムを実装しようとしています。

$outputstring のスタイルを少し試してみるまでは、すべてがうまく機能します。

これは私が持っているコードです

$outputstring = "<br><p><span class="label">Name:</span> " .$name. "</p><br> <p><span class="label">Comment:</span>" .$message. "</p><br>";

私はそれが原因であることを知っています

<span class="label"></span>

しかし、誰かが理由を教えてもらえますか?

私が得たスクリプトは、サイト構築を試しているときに YouTube から 1 つだけでした。

完全なスクリプトはこのようなものです。

<?php
$act = $_POST['act'];
if($act == "post") {
$name = $_POST['name'];
$message  = $_POST ['message'];
@$fp = fopen("comments.php", 'a');
if (!$fp) {
    //The file could not be opened
    echo "There was an error! Please try again later!";
    exit;
} else {
    //The file was successfully opened, lets write the comment to it.
    $outputstring = "<br><p><span class="label">Name:</span> " .$name. "</p><br> <p><span class="label">Comment:</span>" .$message. "</p><br>";

    //Write to the file
    fwrite($fp, $outputstring, strlen($outputstring));

    //We are finished writing, close the file for security / memory management purposes
    fclose($fp);

    //Post the success message
    echo "Your post was successfully entered. Click <a href='index.php'>here</a> to continue.";
}
} else {
//We are not trying to post a comment, show the form.
?>
<h3>comments:</h3>
<hr/>
<?php include("comments.php"); ?>
<br><br>
<h3>Post a comment:</h3>
<form action="index.php" method="post">
<label>Name:<label>
<input type="text" name="name" value=""></input>
<br/>
<label>Comment:</label>
<textarea name="messages"></textarea>
<input type="hidden" name="act" value="post"></input>
<br/>
<input type="submit" name="submit" value="Submit"></input>
</form>
<?php
}
?>

スウェルになるクラスでスパンを追加できるようにするために私が何をする必要があるか誰かが教えてくれたら.

ありがとう。

4

3 に答える 3

0

バックスラッシュでエスケープするまで、二重引用符内で二重引用符を使用することはできません。この場合は、このように代わりに単一引用符を使用してください。

$outputstring = "<br><p><span class='label'>Name:</span> " .$name. "</p><br> <p><span class='label'>Comment:</span>" .$message. "</p><br>";
于 2013-05-16T10:00:42.890 に答える