Top "Sqlbindparameter" questions

INSERT into DB table with PDO prepare and bindParam

In simple terms can someone explain what I am doing wrong here - I am simply trying to insert into …

php pdo sqlbindparameter
How to insert the record with MySQL NOW() function in MySQLi with bind_param?

I need to execute this mysql query in MySQLi PDO with bind parametr in PHP: mysql_query("INSERT INTO `posts` (…

php mysql mysqli sqlbindparameter
PDO prepared statements for INSERT and ON DUPLICATE KEY UPDATE with named placeholders

I'd like to switch PDO INSERT and UPDATE prepared statements to INSERT and ON DUPLICATE KEY UPDATE since I think …

php pdo prepared-statement on-duplicate-key sqlbindparameter
(Fatal error: Call to a member function bind_param() on a non-object)

I get an error with this text:(sorry for my bad english I am from germany!) Error:Fatal error: Call …

php mysqli sqlbindparameter
What is the type of NULL in mysqli bind_param?

I am trying to bind params to a INSERT INTO MySQLi prepared statement if that variable exists, otherwise insert null.…

php mysqli sqlbindparameter
Dynamically bind mysqli_stmt parameters and then bind result (PHP)

I'm trying to dynamically bind mysql_stmt parameters and get the result in an associative array. I've found this post …

php dynamic prepared-statement sqlbindparameter