Here’s some good documentation on PHP prepared statements and stored procedures including how to call stored procedures with output parameters.
Tag Archives: prepared
Are Prepared Statements a waste for normal queries? (PHP)
Reply
I was interested to know if using prepared statements was a waste of time if the statement was only going to be used once. I found Are Prepared Statements a waste for normal queries? (PHP) on StackOverflow and basically came away with the understanding that it’s a pretty low overhead and it’s good for security so you might as well use prepared statements all the time.