-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_sample.php
31 lines (31 loc) · 1.23 KB
/
get_sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
if (isset($_POST['query']) === TRUE) {
$query = htmlspecialchars($_POST['query'], ENT_QUOTES, 'UTF-8');
}
?>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>スーパーグローバル変数使用例</title>
</head>
<body>
<h1>検索しよう</h1>
<?php
// formから検索文字列が渡ってきている場合はGoogleへのリンクを表示
if (isset($query) === TRUE) {
?>
<a href="https://www.google.co.jp/search?q=<?= $query; ?>" target="_blank">「<?= $query; ?>」をGoogleで検索する</a><br>
<a href="http://www.bing.com/search?q=<?= $query; ?>" target="_blank">「<?= $query; ?>」をbingで検索する</a><br>
<a href="http://search.yahoo.co.jp/search?p=<?= $query; ?>" target="_blank">「<?= $query; ?>」をyahooで検索する</a><br>
<p>このページをブックマークしてみましょう。<br>ブックマークからこのページにアクセスしても同じページが表示されます</p>
<?php
}
?>
<!-- 検索文字列送信用フォーム -->
<form method="post">
<input type="text" name="query" value="<?php if (isset($query) === TRUE) { print $query; } ?>">
<input type="submit" value="送信">
</form>
</body>
</html>