Archives

You are currently viewing archive for 29 May 2007
Category: Linux tips
Posted by: hajime osako
FreeTDS.org
FreeTDS is a set of libraries for Unix and Linux that allows your programs to natively talk to Microsoft SQL Server and Sybase databases.
Category: Z. etc
Posted by: hajime osako
なぜかリダイレクトするページがキャッシュされて、exit()が使用されていない場合、Internet Explorerのアドレスバーにリダイレクトを実行するURLが表示されたままになる。

直すには、
   header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
   header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
   header("Location: http://www.osakos.com/");
   exit();