Stored procedures are supported in MySQL 5. A stored procedure is a set of SQL statements that can be stored in the server. Once this has been done, clients don’t need to keep reissuing the individual statements but can refer to the stored procedure instead. This article, I will be explaining, how stored procedures can be called from a PHP script.
Create a visdomsoft database.
mysql> CREATE...
continue reading ...