I have a question that is probably simple for most of you. I'm trying for the second time with PDO and have the same problem.
I have 2 classes and a DB login function:
class SiteTemplatesController{
public $Model;
public function __construct(){
$this->Model = new SiteHelperTemplatesModel();
}
public function __destruct(){
unset($this->Model);
}
private function siteHelperTemplateSave(){
$this->Model->saveTag($_POST['name'], $_POST['tag'], $_POST['type'], $_POST['sort']);
}
}
}
class SiteHelperTemplatesModel{
private $pdo;
public function __construct(){
include '../../mod/db.php';
$this->pdo = DbPdoLogin();
}
public function __destruct(){
unset($this->pdo);
}
public function saveTag($name, $tags, $type, $sort){
/* FIXME: problem
$statement='CALL siteHelperTagSave("'.$name.'","'.$tags.'","'.$type.'",'.$sort.');';
$result=$this->pdo->exec($statement);
echo "Result: ".$result;
*/
$stmt=$this->pdo->prepare("CALL siteHelperTagSave(:name, :tags, :type, :sort)");
$stmt->bindParam(':name', $name);
$stmt->bindParam(':tags', $tags);
$stmt->bindParam(':type', $type);
$stmt->bindParam(':sort', $sort);
$stmt->execute();
$stmt->closeCursor();
}
}
function DbPdoLogin($DBHost=DB_HOST, $DBName=DB_NAME, $DBLogin=DB_LOGIN, $DBPass=DB_PASS){
try{
$pdo = new PDO('mysql:host='.$DBHost.';dbname='.$DBName, $DBLogin, $DBPass, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8", PDO::ATTR_AUTOCOMMIT=>FALSE));
}
catch(PDOException $eLogon){
echo "<center>Communication error <Br />".$eLogon."</center>";
}
$pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
return $pdo;
}
The problem is that it doesn't work ;) I tried to do it in different ways but it never works, everytime there's no error. The statement works in mysql with static values but not in php.
Maybe the problem is with my PDO connection login function? What am I doing wrong?
--Edit Now i see that problem is with INSERT and PDO. When i change statement to:
$statement="
INSERT INTO `pomocnik`(`name`, `tags`, `type`, `sort`)
VALUES ('".$name."','".$tags."','".$type."',".$sort.")";
It also don't work. If i echo statement, the values are visible:
INSERT INTO `pomocnik`(`name`, `tags`, `type`, `sort`)
VALUES ('test bio 15','test bio 15','bio',96)
So what i am doing wrong with inserting with PDO?