本帖最后由 洛阳牡丹 于 2024-3-25 08:39 编辑
试了,不行啊 程序本身有问题
<?php
if ($_GET["ab"] <> '') {
$id = $_GET["ab"];
$filename = "chongdian.txt";
$file_contents = file_get_contents($filename);
$file_contents = str_replace($message[3], "已处理", $file_contents);
file_put_contents($filename, $file_contents);
echo "<script language=javascript>alert('修改成功!');window.location='1.php'</script>";
}
?> |