マイページのURLは、私が
<form action="<?php echo $_SERVER["PHP_SELF"];?>" method="post">
<div class="form-group">
<textarea class="form-control" placeholder="What will students need to know or do before starting this course? Who is your target student? At the end of my course, students will be able to..." rows="8" required="" name="description"></textarea>
</div>
<button type="submit" class="btn btn-info btn-fill btn-block" name="overview">Save</button>
</form>
のような形を持っている。しかし、問題は<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>
と<?php echo $_SERVER["PHP_SELF"];?>
あるすべての$ _GET値と同じURLを返すされていないhttp://localhost/coursera/instructor/course.php?id=1&name=web%20development§ion=overview
と、そのページのようなものです。
とにかく、私は$ _Get値をハードコードできないので、同じページに戻ることができます。
ありがとうございました。
編集:
print_r($_SERVER["PHP_SELF"]);
は/coursera/instructor/course.php
を示しているが、私はそれを行うにはhttp://localhost/coursera/instructor/course.php?id=1&name=web%20development§ion=overview
どのような方法をしたいですか?
'ますprint_r($ _ SERVER)'と私はフォームを送信するとき、私は同じURLに戻る必要があることをあなたが –
@Federkunを使用することができ、私はしたいが、それは – Phoenix