⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 update_adv_transaction.php

📁 通达OA部分源代码
💻 PHP
字号:
<?
include_once "logincheck.php";
include_once "myconnect.php";
$id=$_REQUEST["id"];

			if (!get_magic_quotes_gpc()) {
			$amount=str_replace('$', '\$',addslashes($_REQUEST["amount"]));
			$description=str_replace('$', '\$',addslashes($_REQUEST["comments"]));
			}
			else
			{
			$amount=str_replace('$', '\$',$_REQUEST["amount"]);
			$description=str_replace('$', '\$',addslashes($_REQUEST["comments"]));
			}

mysql_query("update sbbleads_adv_transactions set 
amount=$amount,description='$description' where id=$id");
$rst=mysql_fetch_array(mysql_query("select * from sbbleads_adv_transactions where id=$id"));
$id=$rst["adv_id"];
header("Location:"."view_adv_transactions.php?id=$id&msg=".urlencode("Successfully updated a transaction."));
die();
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -