Jump to content

[SOLVED] This is killing me but, probably stupidly easy!


Unconscious-heart

Recommended Posts

    I'm somewhat new to php and mysql integration. so hitting this wall has been so discouraging. I use the mysql_connect command alone and it works (or i assume it does as i am not calling on any information from the db at this point) but, I use mysql_connect($***, $***, $***); and the script fails. even mysql_connect() with nothing in the brackets fails. I am so stumped. Ive searched all over the place (past 3 days after work) and am still in the same place I was when I started. Please HELP.

    Here it is.

 

    <?php

 

    require($_SERVER["DOCUMENT_ROOT"]."/config/db_config.php");

    $connection = mysql_connect($db_host, $db_user, $db_password) OR DIE ("Access Denied");

    echo $db_password;

 

    ?>

well this actually goes through too

 

      <?php

 

      require($_SERVER["DOCUMENT_ROOT"]."/config/db_config.php");

      $connection = mysql_connect OR DIE ("Access Denied");

      echo $db_password;

 

      ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.