2009-03-01から1ヶ月間の記事一覧

CodeIgniterでブラウザを閉じた時にセッションを終了するには

http://codeigniter.com/forums/viewthread/70036/ を参考に修正config.php $config[‘sess_expiration’] = -1;に設定し、application/liblaries に MY_Session.phpを置いて、sess_run()の $this->sess_length = (60*60*24*365*2);部分を $this->sess_length …

pythonの勉強3

cgiで動かす任意のファイルを検索して そのソースをとりあえず表示する。 こんなんでいいのかな? あとタブを変換しないといけないかも...。 #! /usr/bin/python # -*- coding: utf-8 -*- import cgi import os import re print "Content-type:text/html\n\n…

pythonの勉強2

cgiで動かす formで受け取ったデータを表示する。 test2.html <html> <head> </head> <body> <h2>test2</h2> <form action="test2.cgi" method="post"> 名前:<input type="text" width="20" name="name"><br /> メールアドレス:<input type="text" width="40" name="mail_address"><br /> <br> <input type="submit" value="決定"> </form> </body> </html>

pythonの勉強1

cgiで動かすtest1.cgi testと表示する #! /usr/bin/python # -*- coding: utf-8 -*- print "Content-type:text/html\n\n"; print "test";