What does MYSQL mean in the following code?

php

Solution

Looks to me like MYSQL is a constant. Look for something like this:

define('MYSQL', '/some/path/');

to get the 'real' include.

Problem

What does `MYSQL` mean in the following code. ``` require_once (MYSQL); ```

Original source

Related problems