본문 바로가기

웹프로그래밍9

Metaweblog API의 기본 내용 요약.... Metaweblog API의 기본 내용 요약.... 세가지 기본 API 닫기 metaWeblog.newPost (blogid, username, password, struct, publish) returns string metaWeblog.editPost (postid, username, password, struct, publish) returns true metaWeblog.getPost (postid, username, password) returns struct 여기에 사용되는 struct... The three basic elements are title, link and description. For blogging tools that don't support titles and links, .. 2007. 9. 27.
mysql 유져 생성 쿼리. 유져 생성 CREATE USER 'Username'@'localhost' IDENTIFIED BY '********'; 유져 DB권한 설정. GRANT ON `channel` . * TO 'Username'@'localhost' WITH GRANT OPTION ; ALL PRIVILEGES 데이터/구조에 관한 모든 권한 USAGE // 데이터/구조에 관한 권한 없음. DB 데이터에 관한 구조 SELECT , INSERT , UPDATE , DELETE , DB 구조에 관한 구조. CREATE , DROP , REFERENCES , INDEX , ALTER , CREATE TEMPORARY TABLES , LOCK TABLES , CREATE VIEW , SHOW VIEW , CREATE ROUTINE, .. 2007. 8. 29.
숫자만 입력되게 만들기 function number_input() { if((event.keyCode57)) { event.returnValue=false; } } 2007. 8. 22.
RSS2.0 번역문 번역본에 대한 저작권이 어떻게 되는지는 모르겠으나, 암튼 필요하시면 누구나 활용하셔도 좋습니다.... ============================================================================ RSS 2.0 Specification Contents What is RSS? Sample files About this document Required channel elements Optional channel elements Elements of Comments Extending RSS Roadmap License and authorship What is RSS? RSS는 웹 컨텐츠를 배급/배포하기 위한 포맷이며, RSS란 이름은 'Really Simple Syn.. 2007. 8. 17.