You can actually call stored procedures with the mysql_ functions as well, provided:
- You don't want to bind any parameters - which effectively prevents use of output parameters
- You only return 1 result set from the procedure (as there's no way to retrieve more than one)
But in general, it works fine.
Mark