如何在PHP PDO中创建函数插入

时间:2016-05-20 06:13:07

标签: php mysql function pdo

使用bindParam或bindValue创建插入函数时遇到问题,总是这样的错误: enter image description here

我的代码应该改进什么:

<?php

function IUD($sql, $param = array()){ 

global $koneksi;

$stmt = $koneksi->prepare($sql);

foreach ($param as $key => $value) {
if(is_int($value)){
$stmt->bindParam("$key", $value, PDO::PARAM_INT);
}else{
$stmt->bindParam("$key", $value);
}
}

$ret = $stmt->execute();
}

$insert = IUD("INSERT INTO user (nama_lengkap,username,password,type_user,foto,tgl) VALUES(:nm,:user,:pass,:type,:foto,:tgl)", array(':nm'=>$nm,':user'=>$user,'pass:'=>$pass,':type'=>$type,':foto'=>$foto,'tgl'=>$tgl));

?>

1 个答案:

答案 0 :(得分:0)

你有一个错字,就是这样。你应该:

':tgl' => $tgl

在您的查询$params数组中。