probably 'dbconnect.inc' has got a line
include('mysql.php')
... and this is what it should have
Your job is see to that 'mysql.php' is not included 2 times
so if using BOTH your lines in other pages, means that you get 'mysql.php' 2 times
Remove the direct include of 'mysql.php' in all pages, but the 'dbconnect'.
And try using only this in pages with any dbconnection:
include_once("/home/crnorth/dbutil/dbconnect.inc");
because you may have stuff in 'dbconnect.inc' that is needed for 'mysql.php'
require_once("/home/crnorth/dbutil/dbconnect.inc");
may be even better to use.
The script wont go on running, if not found file.
By the way,
it is better to use one of these names for that .inc file:
dbconnect.inc.php
dbconnect.php
.inc is often defined by servers as any text file, and not as a PHP file