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. 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. 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 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. 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. 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... 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
Archived
This topic is now archived and is closed to further replies.