| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
| 31 |
- phonegap
- JDOM
- WebLogic
- jsr 296
- Ajax
- MySQL
- dock
- Struts
- Android
- 가우스
- 전자정부프레임워크
- swingx
- oracle
- 선택적조인
- sencha touch
- node.js
- PLSQL
- GPS
- jQuery
- ibsheet
- iBATIS
- rowspan
- Spring
- MFC
- PHP
- Eclipse
- appspresso
- Google Map
- JSON
- tomcat
- 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; } } ..