-2

嘿,我创建了一个单词表并删除了与表中单词相关的值。我需要它,所以当我单击一个单词时,它会打印出该单词的剪切信息,这最终是与该单词相关的信息。问题是,当我添加我的 isset 语句并刷新页面时,它只会显示一个空白屏幕

这是我的完整代码

    <html>
<body>
<script>

  function wordCheck(chosenOne) {
     window.location="http://granite.sru.edu/~jaw1005/word.php?chosenOne=\"" + chosenOne + "\""

  }
</script>
<center>
<table id="test" border="1">
<?

$f="/homes/ddailey/public_html/threefull";
$o=file($f);
$rn=count($o);


for ($i=0;$i<3;$i++){
 print "<tr>";

    for ($g=0;$g<6;$g++){

      $lol=rand(1, $rn);
      $word= explode(" ", ltrim( $o[$lol], ' 0123456789'));
      $fullword = str_replace("\n", "&nbsp;", $o[$lol]);
      print "<td onClick='wordCheck(\"".$fullword."\")'>".ucfirst($word[0])."</td>";

   }
 print "</tr>";

}

if(isset($chosenOne)){
  $realWord=str_replace('"', "", $chosenOne);
  $wordSplit = explode(" ", $realWord);
  print ucfirst($wordSplit[2])."'s part of speech is: ".$wordSplit[3].", while its               frequency is:".$wordSplit[0];

?>
</table>
</center>
</body>
</html>

通过调试我已经确定这是导致问题的代码部分

   if(isset($chosenOne)){
      $realWord=str_replace('"', "", $chosenOne);
      $wordSplit = explode(" ", $realWord);
      print ucfirst($wordSplit[2])."'s part of speech is: ".$wordSplit[3].", while its               frequency is:".$wordSplit[0];

这是页面的链接http://granite.sru.edu/~jaw1005/word.php

4

1 回答 1

0

你没有关闭大括号}

if(isset($chosenOne)){
  $realWord=str_replace('"', "", $chosenOne);
  $wordSplit = explode(" ", $realWord);
  print ucfirst($wordSplit[2])."'s part of speech is: ".$wordSplit[3].", while its               frequency is:".$wordSplit[0];
}//<--- here
?>
于 2013-11-13T06:09:04.410 回答