为什么我的Php变量没有显示?

时间:2013-06-10 04:27:07

标签: php css variables

每当我提交表单时,我的测验变量只显示我输入的内容,而不是他们的分数。

http://i40.tinypic.com/2rzufj6.jpg

Pastebin

如果需要CSS:

Pastebin

2 个答案:

答案 0 :(得分:2)

更改此行...

echo '<h1><b>You scored $score out of  $totalScore </b> </h1>';

对此......

echo '<h1><b>You scored'. $score .' out of '. $totalScore. '</b> </h1>';

答案 1 :(得分:2)

在此处使用双引号"" -

echo "<h1><b>You scored $score out of $totalScore</b> </h1>";

或像这样拆分 -

echo '<h1><b>You scored '.$score.' out of '.$totalScore.'</b> </h1>';