본문 바로가기
728x90

Develop158

[Node.js]DB(MySQL) 연동 var mysql = require('mysql'); // 데이터베이스와 연결합니다. var client = mysql.createConnection({ user:'사용자', password:'비밀번호', host:'호스트', port: 3306, database: '데이터베이스' }); // 명시적으로 연결 client.connect(); client.query('SELECT 1 + 1 AS solution', function(err, rows, fields) { if (err) throw err; console.log('The solution is: ', rows[0].solution); console.log(rows); console.log(fields); }); // 명시적으로 연결 해제 clie.. 2016. 10. 17.
[Node.js]웹 애플리케이션 만들기 const http = require('http'); const hostname = '127.0.0.1'; const port = 1337; http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World!!!\n'); }).listen(port, hostname, () => { console.log('Server running at http://${hostname}:${port}/') }) 2016. 10. 17.
서브라임텍스트 SFTP 설정 참조 http://recoveryman.tistory.com/166 2016. 10. 11.
ICT란? ICT는 다음의 의미를 갖는 두문자어이다.정보 통신 기술(Information & Communication Technology): 단순하게 정보 기술(Information Technology, IT)로 쓸 때가 많다.https://ko.wikipedia.org/wiki/ICT http://m.blog.naver.com/sysoitdotcom/220292064807 http://bitnine.tistory.com/63 2016. 10. 2.
[PHP]imagecreate 사용방법 imagecreate 관련 함수를 사용할 수 없는 경우 아래와 같이 인스톨이 필요하다. [root@localhost /]# yum install php55w-gd 밑줄 부분은 본인의 서버 PHP 버전에 맞춰야 한다. 2016. 9. 28.
[PHP]mbstring 함수 사용방법 mbstring 관련 함수를 사용할 수 없는 경우 다음과 같이 나온다. [root@localhost /]# /usr/bin/phpize Can't find PHP headers in /usr/include/phpThe php-devel package is required for use of this command. 이럴 때 아래와 같이 인스톨이 필요하다. [root@localhost /]# yum install php55w-mbstring 밑줄 부분은 본인의 서버 PHP 버전에 맞춰야 한다. 2016. 9. 28.
728x90