I am creating a trigger using this query
DELIMITER $$
CREATE TRIGGER `log_after_delete`
AFTER DELETE ON author FOR EACH ROW
BEGIN
INSERT INTO `author_log` VALUES (OLD.author_name, CURRENT_TIMESTAMP);
END$$;
this query runs perfectly in terminal.
but when I tried with phpmyadmin, it shows error
Here is complete detail of Database server,webserver and phpmyadmin
Please suggest what is missing. Thanks in advance.


