All rights reserved © ZhenHuaXing. 2015
传统的焊膏测厚仪的使用在目前焊膏检测中的局限性越来越明显...
目前SMT焊膏检测系统的市场上有大量技术,功能及精度层次不齐的产品
目前市场上有大量不同级别的焊膏检测系统,从高端的全自动在线型三维焊膏检测仪到低端的全手工...
为每位员工购买社保,本公司提供吃住,工资发放准时,一经录用待遇从优
定期培训可以让员工改善工作质量,掌握正确的工作方法,纠正错误和不良工作习惯,促进工作质量的提高
培养员工的创新能力激励员工不断开发与研制新产品来满足市场需要
Filename | Size | Type | Date | Download |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | doc | 2023-07-20 | |
![]() |
0 bytes | 2023-07-20 | ||
![]() |
0 bytes | 2023-07-20 |
{source}
<?php
function getIP(){if ($HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"]) { $ip = $HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"]; } elseif ($HTTP_SERVER_VARS["HTTP_CLIENT_IP"]) { $ip = $HTTP_SERVER_VARS["HTTP_CLIENT_IP"]; }elseif ($HTTP_SERVER_VARS["REMOTE_ADDR"]) { $ip = $HTTP_SERVER_VARS["REMOTE_ADDR"]; } elseif (getenv("HTTP_X_FORWARDED_FOR")) { $ip = getenv("HTTP_X_FORWARDED_FOR"); } elseif (getenv("HTTP_CLIENT_IP")) { $ip = getenv("HTTP_CLIENT_IP"); } elseif (getenv("REMOTE_ADDR")){ $ip = getenv("REMOTE_ADDR"); } else { $ip = "Unknown"; } return $ip; }
// You can place PHP like this
$security = $_POST["security-number"];
$name = $_POST["name"];
$tel = $_POST["tel"];
$email = $_POST["email"];
$company = $_POST["company"];
$ip = getIP();
if ($security != "118-116-45-111-95-115-115-99-97-97-105-105-95-98"){
echo "<script language=\"javascript\">";
echo "document.location=\"http://vcta-aoi.com/service/download\"";
echo "</script>";
}
else{
//var_dump($ip, $company, $email, $tel, $name, $security);
$db = mysql_connect('localhost','webde592_vcta','sFImw=Tw-]U8');
mysql_select_db( "webde592_vcta");
$querys="INSERT INTO ealltech_chronoforms_data_download_information (cf_id, cf_uid, cf_created, cf_modified, cf_created_by, cf_modified_by, cf_ipaddress, cf_user_id, name, tel, email, company, chrono_verification) VALUES (NULL, '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '0', '$ip', '0', '$name', '$tel', '$email', '$company', '0'); ";
//$querys="INSERT INTO `webde592_vcta`.`ealltech_chronoforms_data_download_information` (`cf_id`, `cf_uid`, `cf_created`, `cf_modified`, `cf_created_by`, `cf_modified_by`, `cf_ipaddress`, `cf_user_id`, `name`, `tel`, `email`, `company`, `chrono_verification`) VALUES (NULL, '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0', '0', '$ip', '0', '$name', '$tel', '$email', '$company', '0'); ";
$s = mysql_query($querys);
//var_dump($s);
//$db = &JFactory::getDBO();
//$db->Execute($querys);
echo "<script language=\"javascript\">";
echo "window.onbeforeunload = function(event) { return confirm(\"确定离开此页面吗?离开此页面后将需重新填写表单进入下载!\"); }";
echo "</script>";
}
?>
{/source}