如何在两个 $_POST 函数之间插入空格


How can I insert a space between two $_POST functions

我有以下代码:

<html>
<head>
<title>Write to a text file</title>
</head>
<body>
Add your text
<form action="" method='post'>
<input name='textblock'></input>
<input name='otherblock'></input>
<input type='submit' value='Add text'>
</form>
<?php
// Open the text file
$f = fopen("texties.txt", "a");
// Write text
fwrite($f, $_POST["textblock"] . $_POST["otherblock"] . "'r'n");
// Close the text file
fclose($f);
$filecontents = file_get_contents("texties.txt");
print nl2br($filecontents);
?>
</body> 
</html>

生成用户在文本框中输入的任何内容,例如"蓝色"和"水牛"作为

蓝水牛

我怎样才能让它阅读

蓝水牛

谢谢!

这可以解决问题:

fwrite($f, $_POST["textblock"]." ". $_POST["otherblock"] . "'r'n");

当你看到这个时,你会踢自己,但它很简单:

<html>
<head>
<title>Write to a text file</title>
</head>
<body>
Add your text
<form action="" method='post'>
<input name='textblock'></input>
<input name='otherblock'></input>
<input type='submit' value='Add text'>
</form>
<?php
// Open the text file
$f = fopen("texties.txt", "a");
// Write text
fwrite($f, $_POST["textblock"] . " " . $_POST["otherblock"] . "'r'n");
// Close the text file
fclose($f);
$filecontents = file_get_contents("texties.txt");
print nl2br($filecontents);
?>
</body> 
</html>