我在该方法中使用弹簧 cron 作业功能我修改了其中一个属性文件的值并获得了新修改后的值我刷新了应用程序上下文(工作正常),在刷新<?php
session_start();
include"connect_db.php"; (this include, includes the above connection to db)
$content_id=$_GET['content_id'];
$username=$_SESSION['username'];
$sql = "DELETE FROM `user_blogs` WHERE `id`='".$content_id."' AND `username`='".$username."'";
$res = mysql_query($sql) or die(mysql_error());
header("location: user_page.php");
?>
后我正在
application context
所以对此有任何解决方案。谢谢你的帮助。