mertch Posted September 13, 2010 Share Posted September 13, 2010 Hi everyone, When I call this config.php in my /m/ directory, the result is a blank page ? <?php // The connection is good $connect_string = 'localhost'; $connect_username = 'root'; $connect_password = ''; $connect_db = 'affiliate'; $link =mysql_connect($connect_string, $connect_username, $connect_password) or die("Connection Failed"); mysql_select_db($connect_db) or die("Database selection failure"); $gff = mysql_query("SELECT * FROM affiliate_settings") or die(mysql_error()); $gffF = mysql_fetch_array($gff); // site variables $site_name = $gffF['site_name']; $site_url = $gffF['site_url']; $admin_email = $gffF['admin_email']; $title =$gffF['title']; $keywords =$gffF['keywords']; $description = $gffF['description']; $copyright = $gffF['copyright']; $manual = $gffF['manual']; //$currency = $gffF['currency']; $symbol = $gffF['symbol']; $usd_symbol='$'; $gbp_symbol='£'; $euro_symbol='€'; $today=date("Y-m-d"); $ip=$_SERVER['REMOTE_ADDR']; ?> Thanx everyone for reading & helping. Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/ Share on other sites More sharing options...
Pikachu2000 Posted September 13, 2010 Share Posted September 13, 2010 That script generates no output, so a blank page is what it should produce. Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/#findComment-1110677 Share on other sites More sharing options...
mertch Posted September 13, 2010 Author Share Posted September 13, 2010 It's a membership script though. Any idea to make it tell me how to go to admin section or something like that ? Thanx Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/#findComment-1110707 Share on other sites More sharing options...
Pikachu2000 Posted September 13, 2010 Share Posted September 13, 2010 That isn't a membership script. It's some sort of configuration script. Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/#findComment-1110712 Share on other sites More sharing options...
thezodiac Posted September 16, 2010 Share Posted September 16, 2010 Could be part of anyway this is certainly some kind of config of something there is no output generated for the client. Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/#findComment-1111724 Share on other sites More sharing options...
malcolmmorgan2010 Posted September 21, 2010 Share Posted September 21, 2010 Hey, I found many new things here, Thanks for sharing... Quote Link to comment https://forums.phpfreaks.com/topic/213314-newbie-with-a-gifted-code/#findComment-1113600 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.