gpt4 book ai didi

php - 在 CSV 文件中写入包含在 php 中的 HTML 表单信息

转载 作者:行者123 更新时间:2023-11-28 02:27:42 25 4
gpt4 key购买 nike

我正在为自己的目的开发一个小型 Wordpress 插件。

第一步很简单,但是对于使用 PHP 在 CSV 文件中写入表单数据,我有些不明白。我正在使用 readfile() 将 html 代码导入到 PHP 文件中。

我关注了这个tutorial但我不明白为什么它不起作用。 CSV 文件中未写入任何数据。可能是因为 readfile()?

编辑:可能是因为我没有使用 Wordpress Hook 调用我的函数?发送表单时可以使用哪个?

HTML代码:

<form method="post">
<label for="prenom">Prénom</label>
<input class="main-content__form--input" pattern="[a-zA-Z0-9 ]+" id="prenom" type="text" name="prenom" required>

<label for="nom">Nom</label>
<input class="main-content__form--input" pattern="[a-zA-Z0-9 ]+" id="nom" type="text" name="nom" required>

<label for="email">Email</label>
<input class="main-content__form--input" id="email" type="email" name="email" required>

<fieldset class="main-content__form--checkbox">
<legend class="main-content__form--legend">Sélection des films</legend>

<input type="checkbox" id="laHaine" name="films" value="La Haine">
<label for="laHaine">La Haine</label>

<input type="checkbox" id="odyssee" name="films" value="l'Odyssée de l'espace">
<label for="odyssee">l'Odyssée de l'espace</label>

<input type="checkbox" id="requiem" name="films" value="Requiem for a dream">
<label for="requiem">Requiem for a dream</label>

<input type="checkbox" id="mulholland" name="films" value="Mulholland Drive">
<label for="mulholland">Mulholland Drive</label>

<input type="checkbox" id="Carnage" name="films" value="Carnage">
<label for="Carnage">Carnage</label>

<input type="checkbox" id="under" name="films" value="Under the skin">
<label for="under">Under the skin</label>

<input type="checkbox" id="edward" name="films" value="Edward aux mains d'argent">
<label for="edward">Edward aux mains d'argent</label>

<input type="checkbox" id="lost" name="films" value="Lost in translation">
<label for="lost">Lost in translation</label>
</fieldset>

<input class="main-content__form--input" name="submit" type="submit" value="S'inscrire">
</form>

PHP代码:

$error = '';
$fname = sanitize_text_field($_POST['prenom']);
$lname = sanitize_text_field($_POST['nom']);
$email = sanitize_email($_POST['email']);
$checkbox = $_POST['films'];
$error = '';


function clean_text($clean) {
$clean = trim($clean);
$clean = stripslashes($clean);
$clean = htmlspecialchars($clean);
return $clean;
}


if(isset($_POST['submit'])) {

if(empty($_POST['prenom']) OR empty($_POST['nom']) OR empty($_POST['email'])) {
$error = '<p>Veuillez réessayer</p>';
} else {
$fname = clean_text($_POST['prenom']);
$lname = clean_text($_POST['nom']);
$email = clean_text($_POST['email']);
}

if($error = '') {
$file_open = fopen('../form-to-csv.csv', 'a');
$no_rows = count(file('form-to-csv.csv'));
if ($no_rows > 1) {
$no_rows = ($no_rows - 1) +1;
}
$form_data = array(
'id' => $no_rows,
'prenom' => $fname,
'nom' => $lname,
'email' => $email,
'films' => $checkbox
);
fputcsv($file_open, $form_data);
$error = '<p>Votre inscription a bien été prise en compte</p>';
$fname = '';
$lname = '';
$email = '';
$checkbox = '';
}
}

最佳答案

比较运算符中的拼写错误:if($error = '') { 应该是 if($error == '') {

编辑:可能是您的文件权限,尤其是编辑权限。更改权限或尝试将 csv 文件放在桌面上:$file_open = fopen('C:\Users\Daniel\Desktop\form-to-csv.csv', 'a');

编辑 2: 是的,它是文件权限。我在修复了比较运算符的情况下执行了您的代码,它成功地附加到文件中。

关于php - 在 CSV 文件中写入包含在 php 中的 HTML 表单信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52875350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com