본문 바로가기
반응형

기술자료/기타31

DragonFireSDK - Beta Test Your free copy of the SDK is attached. We do ask that you experiment with the SDK and give us feedback on your experience. We want to make this SDK as easy to use as possible. We look forward to updating it with your suggestions and supporting you in your effort to create a successful iPhone game! Instructions for use: 1) Double click Example.dsw and Build and Run the project. 2) You should see .. 2010. 1. 8.
asp 내장 객체 - ServerVariables Collection APPL_PHYSICAL_PATH : E:\HOME\help_tt_co_kr\ 메타베이스 경로에 해당하는 실제(디렉터리) 경로를 반환합니다. - PATH_TRANSLATED : E:\HOME\help_tt_co_kr\servervariables\ServerVariables.asp 실제(디렉토리) 경로를 반환합니다. - HTTP_HOST : help_tt.co.kr 도메인명을 반환합니다. - HTTP_URL : /servervariables/ServerVariables.asp 도메인명의 이후 URL을 반환합니다. - HTTP_METHOD : GET 전송방식을 반환합니다. - HTTP_REFERER : http://help.tt.co.kr/servervariables/servervariables_start... 2009. 8. 28.
PHP 템플릿 클래스 사용 간단한 설명은 다음과 같습니다. 먼저 기존의 코딩 방법 입니다. # 파일명 : index.html for($i=0;$i=200;$i++) { echo "$i "; } ?> 식으로 제작 하였습니다. 이경우 위에 애기한 데로. 나중에 디자인 수정시에는 프로그래머와 디자인너가 작업을 둘이서 해야 했습니다,. Templite를 이요하면 다름과 같이 쓰여 집니다. # 파일명 : index.html include("class.FastTemplate.php"); $tpl = new FastTemplate("./templates"); $tpl->define( array( main => "index.tpl", ) ); for($i=0;$i=200;$i++) { $temp .= "$i "; } $tpl->assign( a.. 2009. 7. 7.
PHP mysql 연동 $dbId = "test";$dbPassword = "12345";$dbName = "test";$conn = mysql_connect('localhost', $dbId, $dbPassword);if (!$conn) {die('Could not connect: ' . mysql_error());}$selectDB =  mysql_select_db($dbName, $conn);if(!selectDB) {echo("데이터베이스 에러");exit;}//mysql_query("set character set euckr");$query = "SELECT * FROM mem";$result = mysql_query($query,$conn) or die("잘못된 퀴리문입니다");while ($row = mysql_f.. 2009. 7. 7.
728x90
반응형