有! 我想进行数据库搜索,并以预先填充的HTML格式将结果显示给用户。
我找到了代码中不起作用的确切部分,但我无法理解服务器未挑选PHP的原因。我正在使用UwAMP。
为了说明问题,这是我需要帮助的简短代码片段:
<form id="st_reg" action="" method="POST">
Student Number:
<input type="number" name="s_num" min="1000000" max="3000000" > </br>
<input type="Submit" value="Search">
</form>
<?php
if($_SERVER['REQUEST_METHOD'] == "POST"){
if(empty($_POST['s_num'])){
$errors[] = "You forgot to enter the Student No!";
}
else{
$st_no = trim($_POST['s_num']);
}
if(empty($errors)){
//Open database connection
require('../../connect_to_database/mysql_connect.php');
//Check if the student is already in the database
$query = "SELECT * FROM student WHERE student_no = $st_no";
//Run the query
$result = mysqli_query($db_connection,$query);
if(!$result){
echo "The student does not exist!";
echo"Please <a href='index.html'>go back</a> and choose another action!";
}
elseif($result){
echo "<h2>Student Details:</h2>";
while($row = mysqli_fetch_array($result)){
echo '<form id="st_reg" action="" method="POST">
<label>Student Number:</label>
<input type="number" name = "st_number" min="1000000" max="3000000" value="<?php if(isset(\$row[\'student_no\'])) echo \$row[\'student_no\']; ?> ">
并且VALUE ATTRIBUTE中的PHP代码在实际应该执行时没有执行。不要担心GLOBAL php标签没有被关闭,因为它们在文件中(我不是那个转储)。
请注意,所有这些代码都在包含HTML代码的 .php 文件中。这是表单提交后的处理部分。我通过使用单引号来节省我的时间,并在需要数据库访问的路上转义了单引号。我在变量周围尝试了大括号,在其中使用双引号回复双重引号,但这些尝试都没有成功。 这很奇怪,因为我可以在这种情况之外完美地回应$ row [&#39; student_no&#39;]并且运行良好。
我也在这个网站上看过类似的问题。他们很接近,但他们都没有接近这种情况。我愿意接受任何建议,而不是那些解决方案。
答案 0 :(得分:2)
echo '<form id="st_reg" action="" method="POST">
<label>Student Number:</label>
<input type="number" name = "st_number" min="1000000" max="3000000" value="<?php if(isset(\$row[\'student_no\'])) echo \$row[\'student_no\']; ?> ">
应如下所示:
echo '<form id="st_reg" action="" method="POST">
<label>Student Number:</label>
<input type="number" name = "st_number" min="1000000" max="3000000" value="' . (isset($row['student_no']) ? $row['student_no'] : '') . '">
CONTINUATION OF STRING...
答案 1 :(得分:0)
以下将做你想要的。
value="<?= (isset($row["student_no"]) ? $row["student_no"] : "") ?>"
当你已经进入PHP块时,你不必担心所有的转义。