| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
- Struts
- PHP
- dock
- jQuery
- Spring
- Eclipse
- iBATIS
- appspresso
- Google Map
- JDOM
- sencha touch
- node.js
- MFC
- 선택적조인
- tomcat
- jsr 296
- phonegap
- 전자정부프레임워크
- WebLogic
- rowspan
- PLSQL
- Ajax
- GPS
- MySQL
- oracle
- Android
- swingx
- ibsheet
- JSON
- 가우스
- Today
- Total
목록PHP (3)
Where The Streets Have No Name
참고 : http://robert.accettura.com/blog/2006/09/14/asynchronous-processing-with-php/ 브라우저에서 호출되는 페이지 백그라운드로 실행되는 페이지
http://www.joeyrivera.com/2009/using-mysql-stored-procedures-with-php-mysqlmysqlipdo/ Wondering how to use stored procedures with PHP and MySQL? So was I and here’s what I’ve learned. In this tutorial I’ll explain how to use PHP (I’m using 5.2.6) to call MySQL (I’m using 5.0.2) stored procedures using the following database extensions: MySQL - http://us.php.net/manual/en/book.mysql.php MySQLi - ..
출처 : http://mygony.com/archives/944 function json_encode2($data) { switch (gettype($data)) { case 'boolean': return $data?'true':'false'; case 'integer': case 'double': return $data; case 'string': return '"'.strtr($data, array('\\'=>'\\\\','"'=>'\\"')).'"'; case 'array': $rel = false; // relative array? $key = array_keys($data); foreach ($key as $v) { if (!is_int($v)) { $rel = true; break; } } ..