How to use Stored Procedures in PHP
see this simple example To calculate the area of a circle with given radius R, the following commands can be given delimiter // create function Area (R double) returns double deterministic begin declare A double; set A = R * R * pi(); return A; end // delimiter ; And to call it from php… Read More »