Jump to content

Sqli Error - # Of Variables Don't Match


vikram12345

Recommended Posts

<?php

/* create a prepared statement */

if ($stmt = $mysqli->prepare("INSERT INTO userregistry (email,password11,firstname,lastname,contact,sex,dob,active,date) VALUES (?,?,?,?,?,?,?,?,?)"))

{

 

/* bind parameters for markers */

$stmt->bind_param("sssssssss", $email , $hash, $firstname , $secondname , $contact , $sex ,$dob , $active , $date);

 

/* execute query */

$stmt->execute();

 

 

 

/* bind result variables */

$stmt->bind_result($email,$hash,$firstname,$secondname,$contact,$sex,$dob,$active,$date);

$stmt->fetch();

 

/* close statement */

$stmt->close();

}

 

/* close connection */

$mysqli->close();

?>

 

 

Well this is the code I've written to enter the above fields into a DB

 

I keep getting the error

 

 

Warning: mysqli_stmt::bind_result(): Number of bind variables doesn't match number of fields in prepared statement in D:\xampp\htdocs\bullet2\sqlienterintodb.phpon line 15

 

 

Any ideas ??

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.