PHP --> MS Acess

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chexie69
    New Member
    • Mar 2007
    • 1

    #1

    PHP --> MS Acess

    hi..anyone could help me om how to connect PHP using ms accesss....
  • mainul
    New Member
    • Sep 2006
    • 51

    #2
    if you want to connect an MS Access database you have to create an ODBC connection. hope you know how to connect that from administrative tools. then try the below code.

    [PHP]
    <?php
    $odbc = odbc_connect ('dsnName','use rName','Passwor d') or die('Could Not Connect to ODBC Database!');
    ?>
    [/PHP]

    Comment

    Working...