Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<?php

require_once "includes/db_data_inc.php";

try 
{
    /* In this way I get a db connection handle */
    $DBH = new PDO("mysql:host=$db_host;port=8889;dbname=$db_name",$db_user,$db_pass);

}
catch (PDOException $pdoe) 
{
    error_log($pdoe->getMessage());
    die("Failed to connect to the database.");
}

$DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$DBH->setAttribute(PDO::ATTR_AUTOCOMMIT,false);

try
{
    $success_msg = NULL;
    $unsucess_msg = NULL;

    $query = "INSERT INTO users (name,surname,address,birth_place,province,birthdate,sex,treatment) VALUES (?)";
    $SHT = $DBH->prepare($query);

    $SHT->bindParam(1, $_POST['name']);
    $SHT->bindParam(2, $_POST['surname']);
    $SHT->bindParam(3, $_POST['address']);
    $SHT->bindParam(4, $_POST['birth_place']);
    $SHT->bindParam(5, $_POST['province']);
    $SHT->bindParam(6, $_POST['dt']);
    $SHT->bindParam(7, $_POST['gender']);
    $SHT->bindParam(8, $_POST['select']);

    $DBH->beginTransaction();

    if($SHT->execute())
    {
        $DBH->commit();
        $success_msg = "The emergency call was correctly sent...";
    }
    else
    {
        $unsucess_msg = "It couldn't estabilished a connection to call center...";
    }
}
catch(PDOException $pdoe)
{
    $DBH->rollBack();
}


/* Close the db connection */
$DBH = null;

?>

here it is my mysql connection function to connect to mysql db and an insert query. The code doesn't work.There is maybe some error?Because I don't receive any error from php console but I don't even see any result in the page.any idea?

I worked on the console and obtained this error:

Invalid parameter number: number of bound variables does not match number of tokens

what does it mean?

share|improve this question
Use something like var_dump($pdoe); to get the exception. Is somehow useless to just rollback the transaction and completely ignoring the actual error... – ZombieHunter Feb 11 '12 at 0:52

closed as too localized by casperOne Feb 12 '12 at 7:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

One '?' just doesn't match with the eight parameters you pass in later.

Take a look at the examples of the PDOStatement::bindParam method.

Use something like:

$query = "INSERT INTO users (name,surname,address,birth_place,province,birthdate,sex,treatment) VALUES (?, ?, ?, ?, ?, ?, ?, ?)";
share|improve this answer
So I have put eight '?' inline...? – eng_mazzy Feb 11 '12 at 0:59
or I can create placeholder like: bindParam(':name', $_POST['name']) and substitue :name to '?'. Right? – eng_mazzy Feb 11 '12 at 1:02
@eng_mazzy: Just look at the examples in my link, the should answer all your questions. – ZombieHunter Feb 11 '12 at 1:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.