.
블로그 로고

웹눈 이야기

재미를 넘어서자
블로그"웹눈 이야기"에 대한 검색결과154건
  • [비공개] jQuery 를 이용한 XML 파싱

        $(document).ready(function() {  $.get("hello.xml",{},function(xml) { $("item",xml).each(function(i) { title = $(this).find("title").text(); $("#contents").append("title"); }); });  });    아래는 안에 들어갈 div 태그
    웹눈 이야기|2009-05-16 10:20 am|추천

    추천

  • [비공개] PHP로 달력만들기

    생각보다 간단하게 만들었다.                 일     월     화     수     목     금     토      
    웹눈 이야기|2009-05-15 01:46 pm|추천

    추천

  • [비공개] PHP 1부터 100 사이의 소수 구하기

    이거 하나 하는데도.. 시간이 걸리니 ㅉㅉ....
    웹눈 이야기|2009-05-09 08:33 pm|추천

    추천

  • [비공개] PHP 변수형 확인

    사용법: gettype(변수명)  변수형 리턴값 종류: "integer", "double", "string", "array", "object", "unknown type"  사용예:  
    웹눈 이야기|2009-05-09 07:31 pm|추천

    추천

  • [비공개] 실시간 주가정보 파싱하기

    개인적인 용도로 사용할 실시간 주가 정보가 필요했었다.  주가정보를 제공하는 open api 를 검색해 보았지만, 찾기가 힘들었다. 이리저리 검색을 하던중 http://money.msn.co.kr/gadget/sb_data.php 의 parameter 를 적절히 사용하면 실시간(사실 20분 늦은) 주가 정보를 제공받을수 있다는걸 알게 되었다. 하지만 parameter에는 종목코드로밖에 검색을 할수없었고(내가 알기로는)  종목코드로 검색을 하는것은 비효율적이였기 때문에 다른 방법이 필요했다. 다행이도 '주가종목 코드'를 검색해주는 곳이 있어서, 그곳에서 모든 종목의 종목코드를 얻을수 있었다.(약 2066개였는데, 전부인지는 모르겠다) 종목과 종목별 코드를 얻은 나는 DB에 입력하기 위해 explode를 사용해서 종목명과 코드명을 분리하였다. 이 방법은 나중에 새로운 종목이 생기거나, 코드명이 변경..
    웹눈 이야기|2009-05-08 11:51 pm|추천

    추천

  • [비공개] .htaccess 수정하여 index.php 파일 제거

    Removing the index.php file By default, the index.php file will be included in your URLs:example.com/index.php/news/article/my_article You can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the "negative" method in which everything is redirected except the specified items:RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] In the above example, any HTTP request other than those for index.php, images, and robots.txt is treated as a request for your index.php
    웹눈 이야기|2009-05-04 05:56 pm|추천

    추천

  • [비공개] DB 내용 배열에 저장하기

    while($row = mysql_fetch_array($result)) { $days[] = $row[0] ; }
    웹눈 이야기|2009-04-26 09:31 am|추천

    추천

  • [비공개] CDATA !?

    http://lvsin.tistory.com/148?srchid=BR1http://lvsin.tistory.com/148
    웹눈 이야기|2009-04-22 05:47 pm|추천

    추천

  • [비공개] mysql 보안

    As long as there are programming languages people will try to hack them, fortunately for us this means we have to have our wits about us when writing applications. In this 2 part article we'll be discussing different ways that hackers try and break into our applications and how we go about protecting our applications from possible harm. Database Security Many websites fall under the attack known as SQL Injection. SQL injection occurs when a malicious user experiments on a form to gain information about a database. After gaining sufficient knowledge, usually from database error messages the attacker is equipped to exploit the form for any possible vulnerabilities by injecting SQL into form fields. With SQL Injection a hacker can retrieve your data, insert, delete, basicly can do anything with your database. A very common example is: Here it is easy for a hacker to try and experiment with your form by giving it statements such as 'OR 1' or 'SELECT username'. This is easily fixab..
    웹눈 이야기|2009-04-22 10:24 am|추천

    추천

  • [비공개] PHP URL 주소 받아오기

    $url = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
    웹눈 이야기|2009-04-21 02:50 pm|추천

    추천

이전  10 11 12 13 14 15 16  다음
셀로거는 비즈니스/마케팅 관련 블로그중 대중에게 RSS를 제공하는 블로그의 정보만 수집 및 정리하여 소개하는 비상업적 메타블로그 사이트입니다.
수집된 내용에 대한 모든 블로그의 저작권은 모두 해당 블로거에게 있으며 공개되는 내용에 대해서는 Sellogger의 입장과 무관합니다.
셀로거에서는 원글의 재편집 및 수정을 하지 않으며 원문링크를 제공하여 전문확인을 위해서는 저작권자의 블로그에서만 확인가능합니다.
Copyright (c) Sellogger. All rights reserved. 피드등록/삭제요청 help@sellogger.com