How to run a blow stored procedure in PHP ???
CREATE PROCEDURE mzappDelete(tableName char(100), fieldName char(100), fieldValue int(10), out flag char(100))
BEGIN
SET @s= CONCAT('select count(*) from ',tableName,' where ',fieldName,' = ',fieldValue);
prepare stmt from @s;
execute stmt;
END
Thanks advance