Welcome to PHPBuilder!
The error message is a result of code like this:
$op = $_GET['op'];
If no 'op' parameter was set in the query string, you're trying to reference an invalid index in the $_GET array. As such, you should always check to see if external data exists before referencing it, such as by using [man]isset/man or [man]empty/man.
One way to do this with little code is to use the ternary operator:
$op = isset($_GET['op']) ? $_GET['op'] : NULL;
which also allows you to set a default value (such as NULL) if the external data doesn't exist.