2

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?

Community
  • 1
  • 1
Derek Adair
  • 21,846
  • 31
  • 97
  • 134

1 Answers1

2

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

Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539