PHP IF / ELSEIF /其他不工作

时间:2018-08-21 21:52:20

标签: php forms

我有一个PHP脚本,该脚本接受从HTML表单传递的变量并更新平面文件。问题是简单的if / elseif / else语句不起作用,特别是执行比较时不会打开正确的文件。表单的输入将始终写入最后一个文件,即gcads3.txt。我已经测试了正确的详细信息从表单传递到脚本,即正确地将一,二或三个传递给$ col,所以我知道比较是错误的。我已经根据PHP文档和有关此问题的其他文章检查了if / elseif / else语法,因此,我缺少什么?先感谢您。

HTML代码:

<form action="updategcads.php" method="post" enctype="multipart/form-data">
  <p>Enter the column to add the new line to:</p>
  <p><input type="radio" name="col" value="one"/> Column 1 
     &nbsp;&nbsp;
     <input type="radio" name="col" value="two"/> Column 2 
     &nbsp;&nbsp;
     <input type="radio" name="col" value="three"/> Column 3
  </p>
  <p>Enter the new line to add:<br><span>(enter the name)</span></p>
  <p><input type="text" name="advs" size="50"/></p>
  <p><input type="submit" value="Update"/></p>
</form> 

updategcads.php代码:

<?php
if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST") 
{
  $col = $_POST["col"]; 
  $line = $_POST["advs"]; 
}

if ($col=="one")
{
  $file = fopen("../gcads1.txt", "a") or die("unable to open $file: $!");
} 
elseif ($col=="two") 
{
  $file = fopen("../gcads2.txt", "a") or die("unable to open $file: $!");
} 
else
{
  $file = fopen("../gcads3.txt", "a") or die("unable to open $file: $!");
}

fwrite($file, $line);
fclose($file);
?>

2 个答案:

答案 0 :(得分:0)

因此,我通过将“ elseif”更改为“ else if”来使其工作。我不确定为什么这样做,而且PHP文档尚不清楚,因此,如果有人可以对此有所了解,我将不胜感激。谢谢!

答案 1 :(得分:0)

您可能需要考虑以下代码。差别不大,但可以允许增长。

<?php
if(isset($_POST['col']) {
  $col = $_POST["col"]; 
  $line = $_POST["advs"]; 
}
$nums = array(
  "one" => 1,
  "two" => 2,
  "three" => 3,
  "four" => 4,
  "five" => 5.
  "six" => 6,
  "seven" => 7,
  "eight" => 8,
  "nine" => 9,
  "zero" => 0
);

$file = fopen("../gcads" . $nums[$col] . ".txt", "a") or die("unable to open $file: $!");

fwrite($file, $line);
fclose($file);
?>

或者,您也可以使用switch()。令人回味。