I have found info how and where to add the requiredloginlevel info. However on my pages I have the following code at the top of the page (below) and just wondering how to add this in there... syntax is different.
<?php session_cache_limiter('none'); session_start(); ob_start(); include "vsadmin/db_conn_open.php"; include "vsadmin/inc/languagefile.php"; include "vsadmin/includes.php"; include "vsadmin/inc/incfunctions.php"; include "vsadmin/inc/metainfo.php";?>
Hy Terry, down further in your html, in the content area, should be the include line that's unique for each page. Try adding it in just before that and don't alter that bit you posted.
<?php session_cache_limiter('none'); session_start(); ob_start(); $requiredloginlevel=4; include "vsadmin/db_conn_open.php"; include "vsadmin/inc/languagefile.php"; include "vsadmin/includes.php"; include "vsadmin/inc/incfunctions.php"; include "vsadmin/inc/metainfo.php";?>