我有这个(简单)代码。我想从每个数组中检索一个随机值,然后让用户告诉我当它们成倍增加时的答案。
用户在上一页声明其姓名后到达此页面,其姓名到达SESSION变量。
此页面到达时没有任何反应!!没有。只是一个空白页......
我之前没有使用数组(只使用随机数),它做得很好。现在我有阵列...问题。
以下是代码:
<?php session_start(); ?>
<html>
<head>
<?php
$first=array(2,4,8,10);
$second=array(2,4,8,10);
$b=rand(0,3);
$c=rand(0,3);
$f=$first['$b'];
$s=$second=['$c'];
$d=$f*$s;
$score=$_SESSION["score"];
$name=$_SESSION["name"];
?>
</head>
<body>
<?php
echo $name." your score so far=".$score;
echo "<br>";
?>
<?php echo"Write the answer";?>
<br>
<?php echo $f."x".$s."=";?>
<form method= "post" action="submit.php">
<input type="number" name=a value="0">
<input type="hidden" name=b value=<?php echo $f;?>>
<input type="hidden" name=c value=<?php echo $s;?>>
<input type="submit" name=submit value="Go!">
</form>