これは私が数年前に行った小さなphpプログラムです(当時はうまくいきました...) 最近、新しい「ウェブサイト」に組み込んでみましたが、テーブルにデータが挿入されません...
(実行してもエラーメッセージは表示されません)
誰かが何が悪いのか教えてくれたら、とてもうれしいです。THX!
// data,from a form on another page, that I want to insert in my db
$nom = $_POST['nom'];
$prenom = $_POST['prenom'];
$date = $_POST['date'];
$identifiant = $_POST['identifiant'];
$password = $_POST['password'];
// connexion to my database
$connexion = mysql_connect("mysql5.000webh.com","a888888_user","mypassword");
mysql_select_db("a888888_mydatabase",$connexion);
// creation and sending of SQL query
$requete = "insert into panel values
('','$nom','$prenom','$date','$identifiant','$password')";
mysql_query($requete);
echo "Vos donnees ont ete envoyees !";
include('page.html');
// closing Mysql connexion
mysql_close();