我正在尝试进行一个简单的PHP测验,但我不得不插入答案并将它们与strcasecmp()进行比较,所以如果第一个字母是大写字母或类似的东西,它就不会有问题,但是代码无法正常工作。有时它不会返回正确的结果,即使我插入了正确的答案。 这是代码:
<?php
$number = rand(1,2);
$result = "";
$answer = "";
$question = "";
$question1 = "What is the capital of China";
$question2 = "What king of country is China?";
$answer1 = "beijing";
$answer2 = "republic";
if ($number == 1) {
$answer = $answer1;
$question = $question1;
}
if ($number == 2) {
$answer = $answer2;
$question = $question2;
}
if(isset($_POST['submit'])){
if (strcasecmp($answer,$_POST['answer']) == 0) {
$result = "Correct!";
} else {
$result = "Wrong!";
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<form method="post" action="index.php">
<div class="middle">
<p class="question"><?php echo $question;
?></p>
<p class="result"><?php echo $result;
$result = "" ?></p>
<div class="box">
<input type="text" name="answer" placeholder="Type here" class="text">
</div>
</div>
<input type="submit" name="submit" value="Continue" class="btn">
</form>
</body>
</html>
答案 0 :(得分:2)
通过查看您的代码,我们可以看到,当您提交表单时,您正在重新启动脚本,该脚本实际上会将$random
重置为新值。有2个问题,你有50%的机会得到'正确'的答案,但你会发现你的脚本根本没有用,添加了更多的问题。
基本上,你应该用另一种方式来达到你想要的效果。您可以尝试在隐藏的<input>
中添加问题的ID,并检查您的表单何时提交以确定它是哪一个。
if(isset($_POST['submit'])){
switch ($_POST['question']) { // Add '{'
case 1:
if (strcasecmp($answer1,$_POST['answer']) == 0) {
$result = "Correct!";
} else {
$result = "Gresit!";
}
break;
case 2:
if (strcasecmp($answer2,$_POST['answer']) == 0) {
$result = "Correct!";
} else {
$result = "Gresit!";
} // Forgot to Add '}'
break;
} // Add '}' It give error in PHP 5.3 Parse error: syntax error, unexpected T_CASE, expecting ':' or '{'
}
对于HTML,您可以在表单中添加此输入:
<input type="text" name="question" value="<?php echo $number ?>" hidden>
这不是达到你想要的最佳方式,这只是一个可行的例子。