gpt4 book ai didi

php - 使用 ck 编辑器更新后页面未重定向

转载 作者:行者123 更新时间:2023-11-29 03:26:45 24 4
gpt4 key购买 nike

我正在使用 CK 编辑器。对于我使用 mysql 的数据库。但是,当我单击提交按钮提交表单时,数据库正在更新,但页面没有重定向到其他位置。

  <?php 



$sql="select * from automation_full";
$query=mysql_query($sql_get);
$row=mysql_fetch_object($query_get);
$old_content=$row->column1;

if(isset($_POST['save']))
{
$new_content=$_POST['content'];

$sql="update table1 set content='$new_content' where key_id=1";
$query=mysql_query($sql);

if($query)
{
header("Location:index.php");
}

}


?>

<div class="custom-container-right-form">



<form action="#" method="post">


<textarea id="text" name="content"></textarea>
<script>
CKEDITOR.replace( 'content' );
</script>

<input type="submit" id="submit-button" name="save" value="Update">


</form>

</div>

当我点击保存时,它应该更新 table1 并重定向到 index.php 。但是我的程序正在更新表但没有重定向到 index.php ...但是当我不使用 ck 编辑器时它工作得很好....如何让它与 ck 编辑器一起工作?

最佳答案

根据您的字段名称更改 textarea id:

<textarea id="content" name="content"></textarea>
<script>
CKEDITOR.replace( 'content' );
</script>

关于php - 使用 ck 编辑器更新后页面未重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34940292/

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