tags:

views:

35

answers:

1

This question is related to a previous post.

Is there something comparable to sqlsrv_query() on a linux server?

Or something extremely simple to parameterize queries for a LAMP(php)/SQL server?

+1  A: 

Just use PDO and the PDOStatement class. It will work with all the major databases, including MySQL and SQL Server.

Matthew Flaschen