この記事はタイトルの通り「SQLiteを使ってToDoリストアプリを作成」の第三部になるので、前回までの記事を既に読んでくださっている方を対象にしています。
	[6]:SQLiteを使ってToDoリストアプリを作成(1)
	[7]:SQLiteを使ってToDoリストアプリを作成(2)
このチュートリアルのメインは、選択されたtodoアイテムを表示することです。todoステータスを更新する方法も扱います。
… 
  
        .htaccessに以下を記述してルートに設置
  
  
# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on
  # Modify the RewriteBase if you are using Drupal in a subdirectory and
  # the rewrite rules are not working properly.
  RewriteBase /
  # Rewrite URLs of the form 'index.php?q=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule> 
参考:http://eru-net.jp/web/?itemid=58
      graffiti on the web      
この投稿へのコメント
コメントはまだありません。