Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
nonga.eemo.co.kr
/
public_html
/
www
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/nonga.eemo.co.kr/public_html/www/local_feed_add_do.php
<? session_cache_limiter('no-cache, must-revalidate'); session_start(); header("Pragma: no-cache"); header("Cache-Control: no-cache,must-revalidate"); header("Content-Type: text/html; charset=utf-8"); include_once("dbconn.php"); include_once("lib.php"); foreach($_GET as $key => $value) { ${$key}=mysql_real_escape_string(trim($value)); } foreach($_POST as $key => $value) { ${$key}=mysql_real_escape_string(trim($value)); } $arr_rst=array(); $is_rs=RS("select * from farm_feed_input_log where farm_no='$farm_no' and is_local='1' and jdate='$jdate' "); if(!$is_rs[no]) { $query="insert into farm_feed_input_log set farm_no='$farm_no', jdate='$jdate', car_num='$car_num', ip_su='$ip_su', feed_jong='$feed_jong', is_local='1', besong_time='$besong_time', regdate=now() "; mysql_query($query) or die(mysql_error()); } else { $query="update farm_feed_input_log set car_num='$car_num', ip_su='$ip_su', feed_jong='$feed_jong', besong_time='$besong_time' where farm_no='$farm_no' and is_local='1' and jdate='$jdate' "; mysql_query($query) or die(mysql_error()); } $arr_rst['rst']='1'; echo json_encode($arr_rst); ?>