Keyword

2012. 11. 20. 17:56 from Study/programming

Subversion Configuration

ECRF

Bootstrap

ASP.net


Posted by 구치리 :

정보 시각화 관련 링크

2012. 11. 15. 10:47 from Study/tip
http://alankang.tistory.com/295

http://blog.naver.com/PostView.nhn?blogId=grace0325&logNo=100147184811



Posted by 구치리 :

C++ Google Unit Testing

2012. 11. 7. 16:42 from Study/programming
Posted by 구치리 :

VA 1850 patch

2011. 7. 27. 19:31 from Study/tip
흐흐흐

 
Posted by 구치리 :
CTRL + K, F

별거 아니다

Visual Studio 2010
C# 의 Key mapping 이 되어 있을때의
자동 줄 맞춤 단축키이다

맨날 까먹어서...

으악!

ps. vim은 = 하나면 되는데..
Posted by 구치리 :

오늘 배운 사실

2010. 4. 16. 22:49 from Study/programming
비주얼 베이직에서 소켓 통신을 할 때엔

string data밖에 보내지 못한다는 사실...

어흑 ㅠㅜ
프로토콜 다시 짜야하잖아

... 분산 시스템 과제를 하던 도중에 일어난 사건
Posted by 구치리 :

아 이걸 분명 예전에 알았었는데
까먹는 바람에
다시는 까먹지 않는다는 다짐으로
남김

submit_test.php     

<html>
    <head>
        <title>
            PHP mysql query test
        </title>
        <script>
            function send() {
                document.unnameid.submit();
            }
        </script>
    </head>
    <body>
        <form name="unnamed" id="unnameid" action="show.php" method="post">
            Name : <input typt="text" size ="10" maxlength="40" name="name"> <br/>
            Phone : <input type="text" size="10" maxlength="40" name="phone"> <br/>
            <input type="button" value="submit" onclick="send();">
        </form>

    </body>
</html>


show.php

<?
    $name = $_POST["name"];
    $phone = $_POST["phone"];

    echo "This is test<br/>";
    echo "$name<br/>";
    echo "$phone<br/>";
?>


위와 같이 코딩을 하게되면 submit_test.php 에 존재하는 form 안의 값이
post 명령을 통해서
show.php에 전달되게 됩니다
이 전달된 값은 $_POST["변수명"] 에 저장되는데
이것을 이용해서 php code를 작성하면
작전 완료
Posted by 구치리 :
Posted by 구치리 :

맨날 익힌다고 익힌다고 하다가... 아직까지 익히지 않았는데

시험이 끝났는데 딱히 재미있는것이 보이지 않아서..

이거라도 하면 조금 재미있을지도...?

ebook for python
 http://diveintopython.org/

official python site
 http://www.python.org/

why python?
 http://kldp.org/node/77727
Posted by 구치리 :

VA_X.DLL

2009. 10. 7. 00:00 from Study/tip
아는 사람만 아는 그 파일입니다 +_+

1619 version
Posted by 구치리 :