Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在PHPページを開発していますが、問題が発生しています。PHPを使用してgetparamsを使用してWebページをリロードするにはどうすればよいですか?例えば:
www.example.com/page.php
これは前のページです。
www.example.com/page.php?view=list
これは後のページです。
:を介してリダイレクトを実行しheaderます
header
http://php.net/manual/en/function.header.php
page.phpの上部にあります
<?php if(!isset($_GET['view'])){ header('Location: page.php?view=list'); exit; } ?>
まだ設定されていない場合は、必要なGETパラメータが設定された状態でページがリロードされます。
通常は、テキストですでにGETパラメータが設定されているHREFリンクを作成するだけですが...