move_reg2.php
327 Bytes
<?php
header("Content-type: text/html; charset=EUC-JP");
//セッション開始
include("./include/session_start.inc");
//ユーザDB更新
$database = $db_name;
include("./include/dbcon.inc");
$strSQL = "update mst_kanri set syain_cd = '".$syain."' where syain_cd = '1'";
$objRec = pg_exec($strSQL);
header("Location:main.php");
?>