0

我有一个用于猜数游戏的 php 脚本和一个用于祝贺页面的 html 脚本。如果猜对了,游戏将结束并打开祝贺页面。在php中,我有一个变量$prize=1000-100 * $_POST['tries'],这样如果第一次猜对了,玩家将赢得$1000;如果玩家有第二次猜测,奖金将减少 100 美元,以此类推。此变量保存在 php 中的隐藏字段中作为 $_POST['prize']。我希望最后的奖品可以打印在祝贺页面上,但是并没有达到我的预期。我在html中做错了什么吗?谢谢大家,玛丽亚。

猜测.php:

<?php
if(isset($_POST['number'])) {
   $num = $_POST['number'];
} else {
   $num = rand(1,10);
}
if(isset($_POST['prize'])) {
   $prize =1000-100 * $_POST['tries'];
} else {
   $prize = 900;
}
$tries=(isset($_POST['guess'])) ? $_POST['tries']+1: 0;
if (!isset($_POST['guess'])) {
    $message="Welcome to the Guessing Game!";
} elseif (!is_numeric($_POST['guess'])) {
    $message="You need to type in a number.";
} elseif ($_POST['guess']==$num) {
    header("Location: Congrats.html");
    exit;
} elseif ($_POST['guess']>$num) {
    $message="Try a smaller number";
} else {
    $message="Try a bigger number";
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Guessing Game</title>
</head>
<body>
<h1><?php echo $message; ?></h1>
<p><strong>Guess number: </strong><?php echo $tries; ?></p>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<p><label for="guess">Type your guess here:</label><br/>
<input type="text" id="guess" name="guess" />
<input type="hidden" name="tries" value="<?php echo $tries; ?>"/><br/>
<input type="hidden" name="number" value="<?php echo $num; ?>"/><br/>
<input type="hidden" name="prize" value="<?php echo $prize; ?>"/>
</p>
<button type="submit" name="submit" value="submit">Submit</button>
</form>
</body>
</html>

恭喜.html:

<! DOCTYPE html>
<html>
<header>
<title>Congratulation!</title>
<body>Congratulation!<br/>
You Won <?php echo $_POST['prize']; ?> dollars!
</body>
</header>
</html>
4

2 回答 2

1

看起来您的脚本可以工作,但您需要更改congrats.html为,congrats.php因为 html 是静态的,而 php 是动态的。此外,您可能想要使用会话,因为任何人都可以检查元素并更改值。

于 2013-04-05T02:48:35.100 回答
0

您只需使用 GET 请求或会话将值传递给祝贺页面。我建议使用会话,这样人们就无法更改奖品价值。

只需在此处修改此部分:

} elseif ($_POST['guess']==$num) {
    $_SESSION['prize'] = $_POST['prize'];
    header("Location: Congrats.php");
    exit;
}

然后(你需要将恭喜页面更改为php页面才能使用会话btw来启用php)

恭喜.php

<! DOCTYPE html>
<html>
<header>
<title>Congratulation!</title>
<body>Congratulation!<br/>
You Won <?php echo $_SESSION['prize']; ?> dollars!
</body>
</header>
</html>

PS: Session 也需要 session_start() 在两个文档的顶部。

于 2013-04-05T02:50:50.997 回答