I have full access to ftp and even phpmyadmin remotely for a project but i am implementing a separate php module for site and I therefore need to connect to the database with mysql statements in php.

All I see in drupal files to connect with is a url.

I don't know drupal but I have a very good knowledge on php.

Help?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The URL ($db_url variable) in your sites/default/settings.php file is broken down like this:

protocol://username:password@server/databasename

You should be able to apply that to your own $db_url and get the connection details.

link|improve this answer
thank you. works fine. now I just need to figure out which htaccess rules to changed so code igniter works right along with the drupal install. – John B Sep 7 '11 at 22:21
You'll find that here: Drupal URL Rewriting conflict :) – Clive Sep 7 '11 at 22:23
ah thanks that did the trick. – John B Sep 7 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.