Hola muchas gracias por tu respuesta haciendo pruebas , cambie la consulta con asii y tampoco me funciona con bindparam y lo cambie a bindValue y si.
Código PHP:
Ver original$daily = '{"amount":0,"accumulated":0}';
$insert = 'INSERT INTO usuarios (idufb,nick,money,gas,phone,address,mail,daily
,ultiposi,idlevel,idavatars,city,idciudad, dailyrents, dailytimeto)
VALUES (? , ? , ? , ? , ? , ? ,?, NOW(), ? , 1, 1, ? ,? , ? ,?)';
$stmt_insert = $this->conn->prepare( $insert );
$stmt_insert->bindValue(1 , $this->idufb,PDO::PARAM_STR);
$stmt_insert->bindValue(2 , $this->nickname,PDO::PARAM_STR);
$stmt_insert->bindValue(3 , $this->money,PDO::PARAM_INT);
$stmt_insert->bindValue(4 , $this->gas,PDO::PARAM_STR);
$stmt_insert->bindValue(5 , $this->phone,PDO::PARAM_STR);
$stmt_insert->bindValue(6 , $this->address,PDO::PARAM_STR);
$stmt_insert->bindValue(7 , $this->mail,PDO
::PARAM_STR); $stmt_insert->bindValue(8 , $this->point,PDO::PARAM_STR);
$stmt_insert->bindValue(9, $city,PDO::PARAM_STR);
$stmt_insert->bindValue(10, $idcity,PDO::PARAM_STR);
$stmt_insert->bindValue(11, $daily,PDO::PARAM_STR);
$stmt_insert->bindValue(12, $daily,PDO::PARAM_STR);
con bindValue me funciona no se porque con bindParam no ?
saludos