Reputation: 21988
Are PHP/mysql prepared statements possible when mysqli and PDO are not available? Are there working Pear solutions for this problem?
Upvotes: 0
Views: 163
Reputation: 291
http://pear.php.net/manual/en/package.database.mdb2.intro-execute.php
That should contain all the information you need.
Otherwise, the standard mysql_* functions do not provide functionality for prepared statements.
Upvotes: 1