Subversion Configuration
ECRF
Bootstrap
ASP.net
VS2010에 Google C++ Unit test 설정하기
http://my-ideas-lab.net/myBlog/2012/08/setup-google-unit-test-with-visual-studio-2010/
Google C++ Unit test tutorial
http://code.google.com/p/googletest/wiki/V1_6_Primer
링크 모음
아 이걸 분명 예전에 알았었는데
까먹는 바람에
다시는 까먹지 않는다는 다짐으로
남김
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>
<?
$name = $_POST["name"];
$phone = $_POST["phone"];echo "This is test<br/>";
echo "$name<br/>";
echo "$phone<br/>";
?>
Ibm 에 이런 페이지가 있다니
놀라울 따름이다