感谢您调查我的问题。它纯粹与 PHP POST / GET 函数有关。
这是我的代码:
索引.php
<html>
<body>
<p>
<center>
<form action="story_get.php" method="post">
<label for="name">Name:</label> <input type="text" name="name">
<label for="age">Age:</label><input type="number" size=2 name="age"><p>
<label for="place">Place:</label> <input type="text" name="place"><p>
<label for="storys">Choose a story:</label>
<select name="story" id="story">
<option value="sea">Sea side</option>
<option value="mount">Mountain</option>
</select>
<p>
<input type="submit" value="Enter">
<button type="reset" value="Reset">Reset</button>
</form>
</body>
</html>
故事获取.php
<html>
<body>
<center>
<h1>Welcome <font color=red><i><?php echo $_POST["name"]; ?></i></font>, age of <font color=red><i><?php echo $_POST["age"]; ?></i></font><br>
to the wonderfull land of <br><font color=red><i><?php echo $_POST["place"]; ?></i></font>
<?php echo $_POST["story"]; ?>
<p><a href=index.php>Edit</a>
</body>
</html>
我的代码工作正常,但<?php echo $_POST["story"]; ?>我不想打印与用户选择的内容相关的 200 多个单词的故事。我希望您理解我想要实现的目标,并能够提出简单的解决方案。提前致谢
12345678_0001
哔哔one