thehost5968 Posted August 10, 2009 Share Posted August 10, 2009 Hi I need this code in my header: $C['files_path'] = '[i]/home/****/public_html/*****/[/i]'; // full path, always end with a slash $C['files_url'] = '[url="http://www.westonehosting.com/whos-online/"]http://www.******.com/******/[/url]'; // url, always end with a slash require ($C['files_path'].'include-****line-header.php'); $line_records = update_line(); 0 Quote Link to comment Share on other sites More sharing options...
BAJI26 Posted August 10, 2009 Share Posted August 10, 2009 Try: {php} $C['files_path'] = '/home/****/public_html/*****/'; // full path, always end with a slash $C['files_url'] = 'http://www.******.com/******/'; // url, always end with a slash require ($C['files_path'].'include-****line-header.php'); $line_records = update_line(); {/php} 0 Quote Link to comment Share on other sites More sharing options...
thehost5968 Posted August 10, 2009 Author Share Posted August 10, 2009 Try: {php} $C['files_path'] = '/home/****/public_html/*****/'; // full path, always end with a slash $C['files_url'] = 'http://www.******.com/******/'; // url, always end with a slash require ($C['files_path'].'include-****line-header.php'); $line_records = update_line(); {/php} this worked: {php} $C['files_path'] = '/home/****/public_html/*****/'; $C['files_url'] = 'http://www.******.com/******/'; require ($C['files_path'].'include-****line-header.php'); $line_records = update_line(); {/php} but now I have to change all the database conention within the $C['files_path'].'include-****line-header.php as all i get is errors. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.