Beginner using PinChange Interrupts

I'm using an Arduino R3 and sample sketch (link below) to try using pin change interrupts for the first time. I ran into an error (" 'attachPinChangeInterrupt' was not declared in this scope") when compiling the program for the first time; I have since added in the header file (PinChangeInt.h) also linked below. But the same problem occurs. Perhaps I have placed the header file in the wrong directory? It is in the same folder as my sketch (e.g. *.ino) file.

Any help greatly appreciated!!!!

Perhaps I have placed the header file in the wrong directory? It is in the same folder as my sketch (e.g. *.ino) file.

Either put the .h file in a folder named PinChangeInt in the libraries folder of your sketches directory or change

#include <PinChangeInt.h>
#include "PinChangeInt.h"