I am creating a trigger that will happen BEFORE and the event is INSERT in phpMyAdmin.
IF(
    SELECT * FROM packageArchive
    WHERE EXISTS(
                  SELECT * FROM packageArchive WHERE 
                  packageArchive.item = NEW.item
                  AND packageArchive.pack = NEW.pack
                  AND packageArchive.weight = NEW.weight
                  ) THEN
-- Does nothing with this insert / Doesn't insert.
If you have any suggestions I'm willing to give it a try.
 
    