html을 팩스로 전송하기.. 1. 제작환경: Redhat 7.3 ,ISA모뎀2개,허름한(?) 서버 2. 제작비용: ISA모뎀(used)X2 = 5000원 2.준비물 : .한글패치를 더이상 손될게 없는 고스트스크립(저는 미지리눅스를 이용하였습니다) .html2ps(웹페이지를 포스트스크립트로 변화시키는 펄스크립트 http://www.tdb.uu.se/~jan/html2ps.html) .백묵폰트(?) .Hylafax pakage. .W3m or Lynx .편의를 위해 script언어를 사용해야할껍니다..^^(저는 bash 스크립트를 이용했습니다...) 3.작업순서 1)팩스서버구축 a.설치가 잘돼는 ISA팩스모뎀을 설치한다. b.Ghostscript을 설치(한글패치완료) b.Hylafax_server를 설치후..
/******************************************************************************Program: waterMark.phpDescription : 서비스 이미지에 워터마크 적용하기Author : Ryu Jee HyoungCreateDate : 2007.01.18CopyRight : Copyright(c) 청명공자 All Right Reserved.UpdateDate :Todo : 워터마크가 적용되도록 이미지 URL 변경 - 사용법 > $img_url = http://localhost/images/test.jpg; > $img_url = waterMark($img_url); > echo $img_url;*********..
먼저 mysql은 index 필드들을 따로 모아 놓기 때문에 이런방식을 이용해서 쿼리를 날리면 속도를 향상 시킬 수 있습니다. 공지 사항 게시판을 만든다고 가정하겠습니다. Table Name : bbs_notice 필요한 예제 필드목록 uid : int 고유번호 자동증가 muid : int 회원고유번호 name : varchar 이름 email : varchar 이메일 subject : varchar 제목 ip : varchar IP주소 contents: text 내용 homepage: varchar 홈페이지 주소 singdate: datetime 등록일 위와 같은 정보들이 필요하다면 먼저 테이블을 2개로 나눕니다. 데이타형 테이블 2개 생성 ■ bbs_notice // 테이타 형 : 테이블 1 uid,..
PHP를 이용한 다중 연결 소켓 통신 (1) 이진우 프리랜서 프로그래머 차례 1. 소개 1.1. PHP 컴파일 하기 1.2. PHP의 소켓 함수 2. 소켓 서버 만들기 3. 소켓 클라이언트 만들기 와 실행 4. 결론 이문서의 배포는 자유로우나 최소한 제작자의 정보는 제외하지 않고 배포해 주세요. 문서가 존재하는 모든곳에 답변을 드릴수 없으므로 질문은 홈페이지(http://www.jinoos.com)에서만 받습니다. 1. 소개 앞으로 몇번에 걸처서 PHP를 이용한 다중 연결 소켓 통신에 대해서 알아보겠습니다. PHP는 확장 함수로 socket 계열 함수를 지원합니다. 하지만 이것은 컴파일시 --with-socket 옵션을 주어 컴파일 해야 합니다. 클라이언트 소켓에 관한 함수 fsockopen()는 이곳에..
PHP를 이용한 다중 연결 소켓 통신 (2) 이진우 프리랜서 프로그래머 차례 1. 소개 2. pcntl_fork() 함수 3. PHP 컴파일 하기 4. 프로그램 작성 4.1. 서버 만들기 4.2. 클라이언트 만들기 4.3. 실행하기 5. 결론 이문서의 배포는 자유로우나 최소한 제작자의 정보는 제외하지 않고 배포해 주세요. 문서가 존재하는 모든곳에 답변을 드릴수 없으므로 질문은 홈페이지(http://www.jinoos.com)에서만 받습니다. 1. 소개 이번강좌에는 fork를 이용해서 새로운 프로세스를 생성하여 생성된 자식 서버프로세스가 클라이언트를 담당하는 형태를 구연해 보겠습니다. PHP에서 fork함수로는 Process Control 함수의 pcntl_fork() 함수가 있습니다. Process Co..
cookies array ready for the next request // Note: This currently ignores the cookie path (and time) completely. Time is not important, // but path could possibly lead to security problems. var $persist_referers = true; // For each request, sends path of last request as referer var $debug = false; var $handle_redire..
HttpClient Examples HttpClient Home | Download HttpClient (txt) | HttpClient Manual | HttpClient Demo Grabbing an HTML page (static method)$pageContents = HttpClient::quickGet('http://example.com/'); Posting a form and grabbing the response (static method)$pageContents = HttpClient::quickPost('http://example.com/someForm', array( 'name' => 'Some Name', 'email' => 'email@example.com' )); The stat..
This demo (which may take a few seconds to load) attempts to retrieves the front page of Amazon.com and reports its size in bytes. Debug mode is switched on to show what the script is doing. This demonstrates the script automatically following redirections and maintaining cookies and referrers between sessions.$client = new HttpClient('www.amazon.com'); $client->setDebug(true); if (!$client->get..
Only methods that are intended to be called from outside the script are described. For details of internal methods, Use The Source :) HttpClient($host, $port = 80) Constructor. Takes the web server host (for example, 'scripts.incutio.com') and an optional port. bool get($path, $data = false) Executes a GET request for the specified path. If $data is specified, appends it to a query string as par..
▣원어 : TABLE / 시작태그:필요 함 / 종료태그:필요 함 본문 내에 표를 만드는 태그입니다. 가장 많이 쓰이는 태그 이며, 홈페이지 내에서 많은 응용력을 필요로 합니다. 이 태그만 잘 사용해도 홈페이지 분위기가 확~~아주 중요한 태그입니다. ▣속성 • align="값" (값 = left / center / right) -----표의 정렬 상태를 설정 합니다. 3.0, 3.0 이상 • backgroungd="이미지 파일 경로" -----배경이 될 이미지 파일의 경로를 지정해 줍니다. 3.0, 4.0 이상 • bgcolor="값" (값 = 색이름 / SRGB) -----배경 색상을 지정해 줍니다. 3.0, 3.0 이상 • bordercolor="값" (값 = 색이름 / SRGB) -----표의 외곽선..
- Total
- Today
- Yesterday