Cesario Posted March 24, 2006 Share Posted March 24, 2006 HI guys, im new to PHP. Recently i have been assigned to do PHP stuffs. IM having problems with the connection to MYSQL server using ADOdb to connect. My error isDebug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect()Even though i have jus written jus a few sentence of codes.<?phprequire'adodb/adodb.inc.php';$conn = &ADONewConnection('mysql');$conn->connect('LOcalhost','rootx','cex','w2paylitex');if(! $DB){ die("The problem was "); }else { print "connected"; }?>Thankx Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/ Share on other sites More sharing options...
AV1611 Posted March 24, 2006 Share Posted March 24, 2006 Debug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect()A couple of quesitons:1. Are you trying to connect to adodb? or to mysql?2. The error you are getting typically means you are using a server with PHP but mysql has not been enabled... PHP 5 dropped native support, you have to enable it... and in 4 is can be disabled if you choose... Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20238 Share on other sites More sharing options...
Cesario Posted March 24, 2006 Author Share Posted March 24, 2006 [!--quoteo(post=357898:date=Mar 24 2006, 07:09 AM:name=AV1611)--][div class=\'quotetop\']QUOTE(AV1611 @ Mar 24 2006, 07:09 AM) [snapback]357898[/snapback][/div][div class=\'quotemain\'][!--quotec--]Debug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect()A couple of quesitons:1. Are you trying to connect to adodb? or to mysql?2. The error you are getting typically means you are using a server with PHP but mysql has not been enabled... PHP 5 dropped native support, you have to enable it... and in 4 is can be disabled if you choose...[/quote]how do i enable it. i was told to use adodb to actually get connected between PHP n MySQL. Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20347 Share on other sites More sharing options...
keeB Posted March 24, 2006 Share Posted March 24, 2006 [!--quoteo(post=358013:date=Mar 24 2006, 07:05 PM:name=Cesario)--][div class=\'quotetop\']QUOTE(Cesario @ Mar 24 2006, 07:05 PM) [snapback]358013[/snapback][/div][div class=\'quotemain\'][!--quotec--]how do i enable it. i was told to use adodb to actually get connected between PHP n MySQL.[/quote]adodb is a class that can be used to connect to a mysql database, but you need to do all of your work within that adodb class..installing mySQL with php is very simple, and there's a guide at [a href=\"http://www.php.net\" target=\"_blank\"]http://www.php.net[/a] .. just search for 'mySQL' and select 'manual' in the dropdown.GOOD LUCK Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20351 Share on other sites More sharing options...
Cesario Posted March 24, 2006 Author Share Posted March 24, 2006 [!--quoteo(post=358017:date=Mar 24 2006, 02:08 PM:name=keeB)--][div class=\'quotetop\']QUOTE(keeB @ Mar 24 2006, 02:08 PM) [snapback]358017[/snapback][/div][div class=\'quotemain\'][!--quotec--]adodb is a class that can be used to connect to a mysql database, but you need to do all of your work within that adodb class..installing mySQL with php is very simple, and there's a guide at [a href=\"http://www.php.net\" target=\"_blank\"]http://www.php.net[/a] .. just search for 'mySQL' and select 'manual' in the dropdown.GOOD LUCK[/quote]but i got this error which point my sql connectionDebug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect()and when i check it out, its this.if (ADODB_PHPVER >= 0x4300) $this->_connectionID = mysql_connect($argHostname,$argUsername,$argPassword, $this->forceNewConnect,$this->clientFlags);i dont understand the forcenewconnect and clientflags, wad has these got to be related to me loggin into my database? Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20360 Share on other sites More sharing options...
keeB Posted March 24, 2006 Share Posted March 24, 2006 [!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--] installing mySQL with php is very simple, and there's a guide at [a href=\"http://www.php.net\" target=\"_blank\"]http://www.php.net[/a] .. just search for 'mySQL' and select 'manual' in the dropdown.GOOD LUCK[/quote] Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20374 Share on other sites More sharing options...
Cesario Posted March 25, 2006 Author Share Posted March 25, 2006 i dont see a manual in the dropdownlist. Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20576 Share on other sites More sharing options...
Cesario Posted March 26, 2006 Author Share Posted March 26, 2006 anywae, im more or less done wif it, jus dat i still cant get connected to the database and dunt even noe y. there error is still the same and i even read thru the links. Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-20847 Share on other sites More sharing options...
Cesario Posted March 27, 2006 Author Share Posted March 27, 2006 k done. thx Link to comment https://forums.phpfreaks.com/topic/5667-connection-to-mysql-server/#findComment-21054 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.