Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

चेतावनी:mysqli_stmt::bind_param():चरों की संख्या तैयार कथन में पैरामीटर की संख्या से मेल नहीं खाती

? . के आसपास के उद्धरण खो दें और 11 के बजाय 10 पैरा का उपयोग करें

इसके बजाय:

$insert = "INSERT INTO record_user (ip,country,address,stack,skills,employment_type,city_selection,landing_time,submission_time,time_spent) 
VALUES ('?','?','?','?','?','?','?','?','?','?')";
$insert = $con->prepare($insert);
$insert->bind_param("ssssssssss", $user_ip, $country, $location, $stack, $skills, $employment, $city, $landing_time, $submission_time, $time_spent);

इसे आजमाएं:

$insert = "INSERT INTO record_user (ip,country,address,stack,skills,employment_type,city_selection,landing_time,submission_time,time_spent)
VALUES (?,?,?,?,?,?,?,?,?,?)";
$insert = $con->prepare($insert);
$insert->bind_param("ssssssssss", $user_ip, $country, $location, $stack, $skills, $employment, $city, $landing_time, $submission_time, $time_spent);


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. अधिक कुशल पदानुक्रम प्रणाली

  2. MySQL ATAN2 () फ़ंक्शन - 2 मानों की चाप स्पर्शरेखा लौटाएं

  3. MySQL:#126 - तालिका के लिए गलत कुंजी फ़ाइल

  4. MySQL संग्रहीत प्रक्रिया में डायनामिक SQL कैसे प्राप्त करें

  5. मैं अपने रास्पबेरी पाई पर बाहरी/दूरस्थ कनेक्शन के लिए अपना MySQL कैसे खोलूं?