私はプログラミングが初めてで、コードの問題が何であるかわかりません。tblins に入力したデータは記録されますが、tbluser のデータはデータベースに保存されません。しかし、tblins の挿入クエリを削除しようとすると、tbluser に入力したいデータがデータベースに記録される可能性があります。ページで [送信] をクリックした後に入力したすべてのデータを 2 つのテーブルに記録できるようにするにはどうすればよいですか? ありがとう。
$usr="INSERT INTO tbluser(username,password,type) VALUES('".$_POST['txtuname']."','".$_POST['txtpass']."','".$_POST['type']."')";
$ins="INSERT INTO tblins(insLN,insFM,insMN,insadd,insCN,insemail,insbdate) VALUES('".$_POST['txtLN']."','".$_POST['txtFN']."','".$_POST['txtMN']."','".$_POST['txtadd']."','".$_POST['txtCN']."','".$_POST['txtemail']."','".$bdate."')";
すべてのアドバイスに感謝します。:DI は現在、SQL インジェクションとは何かについて準備ができています。もっと学びたいと思っています。:D
これが私の完全なコードです。
<?php
include("connect.php");
if(isset($_POST['txtpass']) && isset($_POST['txtrepass'])){
$password1=mysql_real_escape_string($_POST['txtpass']);
$password2=mysql_real_escape_string($_POST['txtrepass']);
if($password1==$password2){
$typeopt=$_POST['type'];
$bdate=$_POST['year']."-".$_POST['month']."-".$_POST['day'];
switch($typeopt){
case 'ins':
$usr=mysql_query("INSERT INTO tbluser(username,password,type) VALUES('".$_POST['txtuname']."','".$_POST['txtpass']."','".$_POST['type']."')");
$ins=mysql_query("INSERT INTO tblins(insLN,insFM,insMN,insadd,insCN,insemail,insbdate) VALUES('".$_POST['txtLN']."','".$_POST['txtFN']."','".$_POST['txtMN']."','".$_POST['txtadd']."','".$_POST['txtCN']."','".$_POST['txtemail']."','".$bdate."')");
if(mysqli_query($con,$ins)) {
echo"success";
}
else{
echo"fail to register";
}
break;
case 'student':
$std="INSERT INTO tblstudent(studLN,studFN,studMN,studBDate,studemail,studadd,studCN)";
$usr="INSERT INTO tbluser(username,password,type)";
$usr=$usr."VALUES('".$_POST['txtuname']."',";
$usr=$usr."'".$_POST['txtpass']."',";
$usr=$usr."'".$_POST['type']."')";
$std=$std."VALUES('".$_POST['txtLN']."',";
$std=$std."'".$_POST['txtFN']."',";
$std=$std."'".$_POST['txtMN']."',";
$std=$std."'".$bdate."',";
$std=$std."'".$_POST['txtemail']."',";
$std=$std."'".$_POST['txtadd']."',";
$std=$std."'".$_POST['txtCN']."')";
if(mysqli_query($con,$std)) {
echo"success";
}
else{
echo"fail to register";
}
}
}
else{
echo"<form>";
echo "Password doesn't match. Try registering again.";
echo "<input type=submit formaction=register.php value=back>";
echo"</form>";
}
}
?>