gpt4 book ai didi

php - 在 PHP 中使用 use "\n"时没有换行

转载 作者:行者123 更新时间:2023-11-28 05:23:40 25 4
gpt4 key购买 nike

我正在尝试在 PHP 中使用 \n 来在我的网站上换行,但它不起作用。

这是我的代码:

if(isset($_POST['selected'])){
$selected_val = $_POST['selected'];
// Storing Selected Value In Variable
echo "\n";
echo $selected_val; // Displaying Selected Value
}

最佳答案

在回显时,使用 <br /> .

\n不会在 HTML 页面中工作,只能在源代码中工作,从命令行执行 PHP 或写入文本文件。

关于php - 在 PHP 中使用 use "\n"时没有换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35366221/

25 4 0
文章推荐: javascript - Ho 在另一个