[PHP-users 11172] Re: 自動転送時のセッションについて
Katsunori-Onuma
php-users@php.gr.jp
Wed, 30 Oct 2002 09:52:32 +0900
小沼と申します
On Wed, 30 Oct 2002 09:28:00 +0900
"kei fujikawa" <fujikawak@s1.docomo-serv.co.jp> wrote:
> おはようございます、藤川と申します。
>
> 早速ですがブラウザによってページを自動振り分けするページを
> 作りました。index.phpからie.phpとnetscape.phpに振り分けるとします。
>
> その際にie.phpとnetscape.php(転送された後)をお気に入りなどに
> 入れてしまわないでindex.phpを常にアクセスしてもらいたいのですが、
>
> index.php
> <?
> session_start();
> $_SESSION['index'] = "ok";
> $kishu = $_SERVER["HTTP_USER_AGENT"];
>
> if(ereg("IE",kishu))
> {
> header("Location: http://localhost/ie.php");
> }
> elseif(ereg("netscape",kishu))
> {
> header("Location: http://localhost/netcape.php");
> }
> ?>
>
header("Location: http://localhost/ie.php");
↓
require("/serverpath/ie.php");
header("Location: http://localhost/netcape.php");
↓
require("/serverpath/netcape.php");
じゃだめですか?
はずしていたらすみません.