tags:

views:

17

answers:

1

One of my hosting server does not support PDO. Are there and mysql_ commands which does the same function of PDO's prepare() and execute()?

I am looking for the parameter substitution feature, i.e. VALUES (?, ?).

+2  A: 

You can use mysqli.

http://php.net/manual/en/mysqli.prepare.php

ceejayoz