PHP,文本文件和数组

时间:2018-06-18 18:49:31

标签: php html arrays checkbox

我有以下HTML代码,我想写入PHP。 (在这个例子的最后,我有我到目前为止所拥有的。)

<form action="action.php" method="post" />
 Please indicate if you us Mathworks MATLAB: <br>
<input type="radio" name="question" value="yes" checked> Yes<br>
<input type="radio" name="question" value="no"> No<br>

If yes, please indicate which of these currently purchased toolboxes you use $
form action="action.php" method="post" />
    Please indicate if you us Mathworks MATLAB: <br>
<input type="radio" name="rad" value="yes" checked> Yes<br>
<input type="radio" name="rad" value="no"> No<br>

If yes, please indicate which of these currently purchased toolboxes you use $

<input type="checkbox" name="tool" value="Control">Control Systems Toolbox<br>
<input type="checkbox" name="tool" value="Image">Image Processing Toolbox<br>
<input type="checkbox" name="tool" value="Optimiz">Optimization Toolbox<br>
<input type="checkbox" name="tool" value="Robust">Robust Control Toolbox<br>
<input type="checkbox" name="tool" value="Signal">Signal Processing   Toolbox<br>
 Please enter a comma separated list of toolboxes you would like to use for you$
<input type="text" name="textquestion" value=""><br>
<input type="submit" value="Submit">

我正在寻找一种方法将复选框放入数组中,以便用户可以检查多个框,并且该答案也会与其他答案一起存储在文本文件中。

<?php
$file = "data.txt";
if(insset($_POST['tool'])){
$tool= $_POST['tool'];
    foreach($tool as $tol=>$value){
    }
} 
 if (isset($_POST['rad']) && value  && ($_POST['question'])) { 
   $fh = fopen($file, 'w+'); 
 $text = $_POST['rad']. ' ' .$value. ' ' .$_POST['question']; 
fwrite($fh,$text); // Write form data to the file
fclose($fh); // Close the file
}
?>

1 个答案:

答案 0 :(得分:0)

首先,您的HTML代码不好,应该是:

<form action="action.php" method="post" />
 Please indicate if you us Mathworks MATLAB: <br>
<input type="radio" name="question" value="yes" checked> Yes<br>
<input type="radio" name="question" value="no"> No<br>

If yes, please indicate which of these currently purchased toolboxes you use $
    Please indicate if you us Mathworks MATLAB: <br>
<input type="radio" name="rad" value="yes" checked> Yes<br>
<input type="radio" name="rad" value="no"> No<br>

If yes, please indicate which of these currently purchased toolboxes you use $

<input type="checkbox" name="tool[]" value="Control">Control Systems Toolbox<br>
<input type="checkbox" name="tool[]" value="Image">Image Processing Toolbox<br>
<input type="checkbox" name="tool[]" value="Optimiz">Optimization Toolbox<br>
<input type="checkbox" name="tool[]" value="Robust">Robust Control Toolbox<br>
<input type="checkbox" name="tool[]" value="Signal">Signal Processing   Toolbox<br>
 Please enter a comma separated list of toolboxes you would like to use for you$
<input type="text" name="textquestion" value=""><br>
<input type="submit" value="Submit">

因此,您的复选框都将被考虑在内。

然后,要创建新数组,请使用:$xxx = array();。 所以,在你的php文件中,写一下:

<?php
$file = "data.txt";
if (!empty($_POST['tool'])) {
    $text = implode(',', $_POST['tool']);
}
if (condition) { 
    $fh = fopen($file, 'w+');  
    fwrite($fh,$text); // Write form data to the file
    fclose($fh); // Close the file
}
?>

根据需要改变后。