(支持:Ubuntu - > phpstorm,apache服务器,PDO)
大家好,
我实际上是在尝试使用Ajax 将下拉列表的选定值保存到我的PDO数据库中。
问题:我设法将我的$ selectedOpt添加到我的数据库中,但是当我尝试使用$ numLigne执行相同操作时,INSERT不再起作用了... (我想获得所选选项行的值)
这是我的代码:
$file = fopen($fichier_txt, 'r+');
if ($file)
{
$pattern_GC = '/N°.*\d{4}(\s?\s?[\w\s]*)(\d{5})\s?(\w+)\W+/isU';
$fichier_txt_content = file_get_contents($fichier_txt);
$regex_GC = preg_match_all($pattern_GC, $fichier_txt_content, $match_GC);
// Match regroupant nom/prenom + adresse
$match_un = explode(PHP_EOL, $match_GC[1][0]);
$match_nom_prenom = $match_un[2];
$match_adresse = $match_un[3];
// Match CP
$match_deux = $match_GC[2][0];
// Match ville
$match_trois = $match_GC[3][0];
// On place ces matchs dans un tableau pour faciliter la création des DDL
$opt = array(0 => $match_nom_prenom, 1 => $match_adresse,2 => $match_deux, 3 => $match_trois);
$numLigne = array();
$numLigne = array_keys($opt);
$i = 0;
?>
<!-- DEFINITION DES DROP-DOWN LISTS -->
<html>
<br /><br />
<label>Nom :</label>
<form method="POST">
<select name="selectBox" class="drop" id="Combobox1">
<option selected hidden value="Fais ton choix !">Choisis le nom</option>
<?php foreach($opt as $key => $val) {?>
<option value="<?= $val ?>"><?= $val ?></option>
<?php } ?>
</select>
</form>
<br /><br />
</html>
<html>
<label>Prenom :</label>
<form method="POST">
<select name="selectBox" class="drop" id="Combobox2">
<option selected hidden value="Fais ton choix !">Choisis le prenom</option>
<?php foreach($opt as $key => $val) {?>
<option value="<?= $val ?>"><?= $val ?></option>
<?php } ?>
</select>
</form>
<br /><br />
</html>
<?php }
在同一个文件中,我有我的Ajax调用:
<script>
// JS Script to save to DB + remove selected opt (jQuery + Ajax)
$(document).ready(function saveToDatabase(selectedValue)
{
var select = selectedValue;
select = $(this).serialize();
var selectBoxes = $('select');
selectBoxes.on('focusin', function ()
{
// Store the current value
$(this).data('value', this.value);
});
selectBoxes.on('change', function ()
{
// POST to php script
$.ajax
({
type: 'POST',
url: 'formulaire_2_test.php',
data:{selected:this.value}
});
var oldValue = $(this).data('value');
var newValue = this.value;
// Remove selected option for children selectBoxes
selectBoxes.filter(':not(#' + this.id + ')').each(function ()
{
var options = $(this).children();
options.filter('[value="' + oldValue + '"]').show();
if (newValue !== '')
{
options.filter('[value="' + newValue + '"]').hide();
}
});
});
});
最后,我的PDO连接语句 :(位于另一个php文件中)
<?php
include 'formulaire_de_test.php';
// Connexion à la BDD pour save les lignes du form (PDO)
try
{
$PDO = new PDO('mysql:host=localhost;dbname=autofill_data', 'root', 'password');
}
catch (Exception $e)
{
die('Erreur : ' . $e->getMessage());
}
// Récup de l'option selected et envoi vers la base
$selectedOpt = $_POST['selected'];
global $key;
$req = $PDO->prepare("INSERT INTO data_lines(idDistributeur, numLigne, libelle) VALUES(0, :numLigne, :selectedOpt)");
$req->bindParam(':selectedOpt', $selectedOpt);
$req->bindParam(':numLigne', $key);
$req->execute();
$data = $req->fetchAll();
我的问题位于我的“numLigne”变量中,但我无法理解精确到位......
一些帮助将不胜感激,因为自上午9点起我无法取得任何进展......
提前致谢,
问候,
Stelio KONTOS。
答案 0 :(得分:1)
正如我所提到的,只有你告诉它,$ key才能通过。如果你把它添加到这样的值:
<option value="<?= $key."_".$val ?>"><?= $val ?></option>
你可以这样回来:
$value = $_POST['selected'];
$options = explode('_',$value); // Your key is in the first position (0), your option in the second (1)
$req->bindParam(':selectedOpt', $options[1]);
$req->bindParam(':numLigne', $options[0]);