karimali831 Posted February 28, 2010 Share Posted February 28, 2010 Hi, Can someone tell me how I can fix this please. I get can not connect to SQL server. I'm using pagination -> http://www.phpfreaks.com/tutorial/basic-pagination and works fine when I manually input the database information. E.g: // database connection info $conn = mysql_connect('localhost','user','password') or trigger_error("SQL", E_USER_ERROR); $db = mysql_select_db('database',$conn) or trigger_error("SQL", E_USER_ERROR); -> is fine. But I need to use it like this: // database connection info include("_mysql.php"); $conn = mysql_connect($host, $user, $pwd) or system_error('ERROR: Can not connect to MySQL-Server'); $db = mysql_select_db($db, $conn) or trigger_error("SQL", E_USER_ERROR); and the _mysql.php file is like: <?php $host = "localhost"; $user = "user"; $pwd = "password"; $db = "database"; define("PREFIX", 'ficocup_'); ?> I'm sure that's correct. Anyone help me please? Thank you Link to comment https://forums.phpfreaks.com/topic/193685-sql-connect-problem-using-pagination/ Share on other sites More sharing options...
MadTechie Posted February 28, 2010 Share Posted February 28, 2010 looks fine, test it by echo'ing the variables, (is the include pointing to the correct path ?) Link to comment https://forums.phpfreaks.com/topic/193685-sql-connect-problem-using-pagination/#findComment-1019466 Share on other sites More sharing options...
karimali831 Posted February 28, 2010 Author Share Posted February 28, 2010 For some reason it works now. Perhaps cache, thanks anyway. Link to comment https://forums.phpfreaks.com/topic/193685-sql-connect-problem-using-pagination/#findComment-1019483 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.