gpt4 book ai didi

php - 如何从 html 文本框中读取数据,并以与文本框中相同的格式在 php 中打印(回显)数据?

转载 作者:太空宇宙 更新时间:2023-11-04 15:08:16 24 4
gpt4 key购买 nike

我是 PHP 初学者,这是我的问题。我有一个文本框和一个“打印”按钮。如果单击“打印”按钮,它应该显示在文本框中输入的名称列表。我编写了以下代码,但问题是,如果我单击“打印”按钮,它会在一行中显示名称,而不是以逐行格式显示名称。有人可以帮助我吗?谢谢。

<!DOCTYPE html>
<html>
<head>
<title>Form Page</title>
</head>
<body>

<form action="Files.php" method="get">
<textarea rows="15" cols="30" value="textbox" name="textbox"></textarea></br>
<input type="submit" value="Print" name="Print">
</form>

</body>
</html>

<?php
if(isset($_GET['Print'])){
$file_print = $_GET["textbox"];
echo $file_print;
}
?>

最佳答案

您需要使用 nl2br()在 PHP 中

echo $file_print; 替换为 echo nl2br($file_print);

用于编辑..

echo nl2br($file_print);
file_put_contents('names.txt',$file_print,FILE_APPEND); //<-- Remove FILE_APPEND if you want to overwrite the file

关于php - 如何从 html 文本框中读取数据,并以与文本框中相同的格式在 php 中打印(回显)数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23320538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com