gpt4 book ai didi

php - 无法从 mysql 数据库中的 Froala 所见即所得编辑器发送值

转载 作者:行者123 更新时间:2023-11-30 22:09:14 25 4
gpt4 key购买 nike

我正在使用 Froala WYSIWYG 编辑器,我想将数据传递到另一个页面,但我的按钮完全禁用。当我按下按钮时, Action 仍然是页面未传输。

<div id="editor">
<?php

if(!empty($_SESSION['success']))
{
echo "done completely";
}
// Create connection
$conn = mysqli_connect("localhost", "root", "", "test");
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}

else{
$sql = "select * from user_login where id= 6";
$result = mysqli_query($conn, $sql);

if(mysqli_num_rows($result)>0)
{

while($row = mysqli_fetch_assoc($result)){



?>
<form action='try.php' method='post' >
<textarea id='edit' style="margin-top: 30px;" placeholder="Type some text" name='user_name'>
<?php echo $row["user_name"] ; ?>
</textarea>


<input name='submit' type="submit" value='Success' class="btn btn-success" />
</form>

<?php

}
}
}

?>
</div>

最佳答案

您必须使用 Jquery 从您的编辑器中提取 HTML 内容。比您可以将其发布到您的服务器。 https://www.froala.com/wysiwyg-editor/examples/getHTML

J查询代码:

$('#submitButton').click(function(e){
var helpHtml = $('div#froala-editor').froalaEditor('html.get'); // Froala Editor Inhalt auslesen
$.post( "otherPage.php", { helpHtml:helpHtml });
});

在 PHP 中,您将在 $_POST 中拥有内容。

不要忘记将 id 属性添加到您的按钮 (id='submitButton')

在使用简单的 SQL 查询保存时,还要注意编辑器内容中的单引号。

关于php - 无法从 mysql 数据库中的 Froala 所见即所得编辑器发送值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40654570/

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