Connecting Ms Access To Php Using Odbc

free web hosting
Free Web Hosting > Computers & Tech > Programming > Scripting > PHP

Connecting Ms Access To Php Using Odbc

vicky99
Dear Friends
I have been trying to connect Ms Access using PHP for couples of days. Finally I have done it. It was dome using Open DataBase Connectivity, popularly known as ODBC (pronounced as separate letters). With an ODBC connection, you can connect to any database, on any computer in your network, as long as an ODBC connection is available.

Here is how to create an ODBC connection to a MS Access Database:

Open the Administrative Tools icon in your Control Panel.
Double-click on the Data Sources (ODBC) icon inside.
Choose the System DSN tab.
Click on Add in the System DSN tab.
Select the Microsoft Access Driver. Click Finish.
In the next screen, click Select to locate the database.
Give the database a Data Source Name (DSN).
Click OK.
Note that this configuration has to be done on the computer where your web site is located. If you are running Internet Information Server (IIS) on your own computer, the instructions above will work, but if your web site is located on a remote server, you have to have physical access to that server, or ask your web host to to set up a DSN for you to use.


--------------------------------------------------------------------------------

Connecting to an ODBC
The odbc_connect() function is used to connect to an ODBC data source. The function takes four parameters: the data source name, username, password, and an optional cursor type.

The odbc_exec() function is used to execute an SQL statement.

Example
The following example creates a connection to a DSN called northwind, with no username and no password. It then creates an SQL and executes it:

$conn=odbc_connect('northwind','','');
$sql="SELECT * FROM customers";
$rs=odbc_exec($conn,$sql);


--------------------------------------------------------------------------------

Retrieving Records
The odbc_fetch_rows() function is used to return records from the result-set. This function returns true if it is able to return rows, otherwise false.

The function takes two parameters: the ODBC result identifier and an optional row number:

odbc_fetch_row($rs)


--------------------------------------------------------------------------------

Retrieving Fields from a Record
The odbc_result() function is used to read fields from a record. This function takes two parameters: the ODBC result identifier and a field number or name.

The code line below returns the value of the first field from the record:

$compname=odbc_result($rs,1);

The code line below returns the value of a field called "CompanyName":

$compname=odbc_result($rs,"CompanyName");


--------------------------------------------------------------------------------

Closing an ODBC Connection
The odbc_close() function is used to close an ODBC connection.

odbc_close($conn);


--------------------------------------------------------------------------------

An ODBC Example
The following example shows how to first create a database connection, then a result-set, and then display the data in an HTML table.

<html>
<body><?php
$conn=odbc_connect('northwind','','');
if (!$conn)
{exit("Connection Failed: " . $conn);}
$sql="SELECT * FROM customers";
$rs=odbc_exec($conn,$sql);
if (!$rs)
{exit("Error in SQL");}
echo "<table><tr>";
echo "<th>Companyname</th>";
echo "<th>Contactname</th></tr>";
while (odbc_fetch_row($rs))
{
$compname=odbc_result($rs,"CompanyName");
$conname=odbc_result($rs,"ContactName");
echo "<tr><td>$compname</td>";
echo "<td>$conname</td></tr>";
}
odbc_close($conn);
echo "</table>";
?></body>
</html>

 

 

 


Reply

TavoxPeru
Excellent job vicky99, very concise and easy to understand, i think it would be very helpful for those people who work or will work with this kind of configuration.

BTW, some time ago i work in a similar configuration and i spend a lot of time to make it work.

Best regards,

Reply

iGuest
How can one connect to a database using DNS on another computer not running Webserver?





_________________________________

Http://smsmail.T35.Com

Reply

yordan
QUOTE(FeedBacker @ Feb 3 2008, 02:25 PM) *
How can one connect to a database using DNS on another computer not running Webserver?
_________________________________

Http://smsmail.T35.Com

Hi,
You are right, here at astahost we have our own database and then the hosname is "localhost".
If you connect to another database server, which allows accessing from other hosts, in the connect string the database server is simply the DNS name of the database server. I used this frequently some years ago, before being hosted here.
Usually, you must have an account at the database server name, and when you create the database, the server automatically gives you the connect statement. Here it looks like :
QUOTE
$dbh=mysql_connect ("localhost", "myname_agbook1", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("myname_agbook1");

On a remote database server the name will not be "localhost", it will probably be a dnsname like dnsprovider.host3

 

 

 


Reply

iGuest
How to connect to a remote Access Database
Connecting Ms Access To Php Using Odbc

Replying to yordan

How would I go about connecting to an MS Access database on another computer via PHP? I've been trying to use odbc extensions to do it but with no avail.

-question by Michael

Reply

iGuest
How do i connect my website to an Ms Access Database
Connecting Ms Access To Php Using Odbc

Hello, am final year student at Makerere University in Uganda
Am developing a dynamic website for manufacturibg firm as my dissertation. So please I wanted your help me on how I can link my website to a database to post customer orders and their comments.
Thanks

-question by Senyonga Henry

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. msaccess php webserver - 1.37 hr back. (1)
  2. connecting to a microsoft access database using php without access to the web server - 6.20 hr back. (1)
  3. php odbc access connection codecharge - 6.90 hr back. (1)
  4. how to connect php with ms access - 19.55 hr back. (1)
  5. connecting php to access - 20.26 hr back. (1)
  6. php odbc ms access - 29.36 hr back. (1)
  7. connecting ms-access remotely odbc - 35.01 hr back. (1)
  8. php to ms access adding record - 36.58 hr back. (1)
  9. how to connect ms access by using php ? - 40.53 hr back. (1)
  10. how to connect ms access by using php - 40.85 hr back. (1)
  11. connecting php to ms access - 43.51 hr back. (1)
  12. php odbc access example - 49.40 hr back. (1)
  13. php access odbc - 51.66 hr back. (1)
  14. login page , php , ms-access - 52.31 hr back. (1)
Similar Topics

Keywords : connecting, ms, access, php, odbc

  1. How To Do POP Access In PHP + Need AJAX Info
    (4)
  2. Php Access Log In Reverse Order
    Request For Help. (8)
    So I need help getting data entered into my log correctly. I want the newest entry to be at the
    beginning (top) of the log instead of at the end (bottom). Here's what I have: CODE
    <?php function access_log(){  // Enter data in usage log. $filename =
    "access.log"; $entry = gmdate("M d, Y H:i:s T").":
    ". getenv("REMOTE_ADDR").": ".
    getenv("HTTP_USER_AGENT")." \n"; fwrite(fopen($filename,
    "a"), $entry); f....
  3. PHP Based Site Access Authentication - Help
    How to block parts of your web-site ?? (4)
    How can i program my web page using php that when the value of the login box is equal to some string
    then go to my success.html otherwise on my fail.html????help me guys!
    ------------------------------------ It would help the readers far better to understand what your
    problem is - if you state the nature of it in short in your topic title, instead of just "Php help".
    It'll also get you a lot more responses. Am changing your topic title to give you an example.
    All the best /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> m^e....

    1. Looking for connecting, ms, access, php, odbc

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for connecting, ms, access, php, odbc
advertisement




Connecting Ms Access To Php Using Odbc



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE