Greetings,
Where is 'cnnct2mysql.php' in relation to 'RGSTRTN_07_7a.php'?
If it's in the same dir then try:
Code:
require_once('cnnct2mysql.php');
if that also does not work it could be because your running the script from the root of the drive in which case you'd have to use something like;
Code:
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cnnct2mysql.php');