Tag Archives: showing the created stored procedures in phpmyadmin

Example of stored procedure in mysql/php

DELIMITER $$ CREATE PROCEDURE get_employee() BEGIN SELECT * FROM employee; END $$ above query will create stored procedure through you phpmyadmin.you can see the created stored procedure inside the Routines tab. in php code use the below code to access the Store procedure