我有一个无法解决的“注意:未定义变量”错误:
注意:未定义变量:第 22 行 C:\wamp\www\cible_envoi.php 中的 Nom
你能看看下面的代码并解释一下有什么问题吗?谢谢!
cible_envoi.php:
<?php
try
{
$bdd = new PDO('mysql:host=localhost;dbname=chansonniersduquebec.com', 'root', '');
}
catch (Exception $e)
{
die('Erreur : ' . $e->getMessage());
}
$req = $bdd->prepare('INSERT INTO chansonniersduquebec.com (Nom) VALUES(?)');
$req->execute(array($_POST['Nom'])); // *** Line 22 ***
脚本.html:
<form id="Formulaire" name="Formulaire" method="post" action="cible_envoi.php">
<label>
<div align="center">Nom (votre nom d'artiste de préférence!)
<span class="style1">*</span>
<input type="text" name="Nom" id="Nom"/>
</div>
<p> </p>
<label>
...
<input type="submit" name="Soumettre" id="Soumettre" value="Soumettre" />
</form>