php106 PHP 파일 내용 DB로 넣기 include "$DOCUMENT_ROOT/php/common.php"; if(!$conn) $conn=dbConn(); $fp=fopen("kkk.txt",'r'); while(!feof($fp)){ $line=fgets($fp, 512); $aa=explode(",",$line); $name=Trim($aa[0]); $email=Trim($aa[1]); $phone=Trim($aa[2]); $qry="INSERT INTO beta_tester VALUES ('$name','$email','$phone')" or die(mysql_error()."->"); //echo $qry.''; mysql_query($qry); } fclose($fp); if($conn)$conn=dbClose($conn); ?> 2008. 10. 18. PHP email 유효성 체크 function emailCheck($email){ if(!eregi("^[a-zA-Z0-9]+[_a-zA-Z0-9-]*(\.[_a-z0-9-]+)*@[a-z??0-9]+(-[a-z??0-9]+)*(\.[a-z??0-9-]+)*(\.[a-z]{2,4})$", $email)) return FALSE; return $email; } 2008. 10. 18. PHP 파일 생성 $fp = @fopen("$DOCUMENT_ROOT/../log_txt/etc/216_".date("Ymd").".txt", "a"); @fwrite($fp, date("Y/m/d(H:i:s)")."\t".$aa."\t".$HTTP_REFERER."\t".$HTTP_SERVER_VARS["HTTP_USER_AGENT"]."\t".$REMOTE_ADDR."\n"); @fclose($fp); 2008. 10. 18. PHP 파일 다운로드 $speed = 8.5; // 8,5 kb/s 비율로 다운로드를 받는다. $file=$DOCUMENT_ROOT.$file; if(file_exists($file) && is_file($file)) { header("Cache-control: private"); header("Content-Type: audio/mp3"); header("Content-Length: ".filesize($file)); header("Content-Disposition: filename={$filename}"); flush(); $fp = fopen($file, "r"); while(!feof($fp)) { echo fread($fp, round($speed*1024)); flush(); sleep(1); } fclose (.. 2008. 10. 18. 이전 1 ··· 15 16 17 18 19 20 21 ··· 27 다음