gpt4 book ai didi

PHP回显长文本

转载 作者:太空狗 更新时间:2023-10-29 16:09:47 26 4
gpt4 key购买 nike

<分区>

这是在 phpmyadmin 中:

This is inside the phpmyadmin

这是回显后的输出:

This is the output after echo

这是显示输出的代码

$joinEvent  =   mysqli_query($db, "SELECT * FROM event WHERE event.eventID='".$_GET['eventID']."'");
while($row = mysqli_fetch_array($joinEvent))
{
$joinDetails = $row['details'];
}

<p align="justify"><?php echo $joinDetails; ?></p>

如何准确回显用户在输入中输入的内容?

26 4 0