|
- <?php
- error_reporting(E_ALL);
- $agile_include_path = dirname(__FILE__) . '/../nago-php/';
- set_include_path(get_include_path() . PATH_SEPARATOR . $agile_include_path);
- require_once('agilelib.php');
- $mysql=new CMysql(array(
- "db_host"=>"localhost",
- "db_username"=>"wjun1981",
- "db_password"=>"xxx",
- "db_database"=>"wjun1981",
- "db_charset"=>"UTF8",));
-
-
-
- $cp="dj";
- $sql="select port from hsk where company='{$cp}'";
- $rs = $mysql->getone($sql);
- header("Refresh:2,Url=http://h20z739588.iask.in:{$rs}/pchart/nsk/djtype.php");
- echo "[{$rs}]即将跳转到东莞恩斯克点检系统...";
- die;
复制代码 |
|