One non-obvious benefit of PDO is that it lets you separate data from the query, making it much more secure to SQL injection attacks.
Also, as a rule, never put SQL in the page you're rendering... you want it in another class, away from your code so that you only have to write it once if it's used in numerous places.
Comments
One non-obvious benefit of PDO is that it lets you separate data from the query, making it much more secure to SQL injection attacks.
Also, as a rule, never put SQL in the page you're rendering... you want it in another class, away from your code so that you only have to write it once if it's used in numerous places.