フォームからの送信で PHP_SELF を使用することについて質問があります。これは私のindex.phpにあるものです:
<body>
<div class="container">
<div class="row">
<div class="span12">
<?php
// If you get an appid,
if(isset($_GET['appid'])) {
// GET appid
$appid = $_GET['appid'];
$json_url ='http://api.nameurl.com/api/gateway/call/1.4/getApp?appid=' . $appid;
$ch = curl_init($json_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$str = curl_exec($ch);
curl_close($ch);
$data = json_decode($str);
$array = json_encode($data);
}
else if(isset($_POST['submit'])){
$name = $_POST['appid'];
echo "User Has submitted the form and entered this name : <b> $name </b>";
echo "<br>You can use the following form again to enter a new name.";
}
else{ ?>
<!-- Form -->
<form class="well" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<label>Your appid</label>
<input type="text" class="span3" name="appid" id="appid" placeholder="Type your appid here..."> <br>
<button type="submit" id="submit" class="btn btn-primary" data-loading-text="Loading...">Submit</button>
</form>
<?php }
?>
<p id="errors" class="text-error"></p>
</div>
</div>
<hr>
</div>
前のページから appid を取得したかどうかを確認します。
はい -> api からデータを取得します
いいえ -> appid を挿入できるようにフォームを表示します
次に、フォームで送信を押すと、appid 挿入を取得して、上記と同じ操作を実行します。
私は何を間違っていますか?