<?php
/* 
Online PHP Examples with Source Code
website: http://4evertutorials.blogspot.in/
*/
// connect to a DSN "database" with a user and password "4evertutorials"
$connect = odbc_connect("database", "4evertutorials", "4evertutorials");
// query the users table for name and surname
$query = "SELECT name, surname FROM users";
// perform the query
$result = odbc_exec($connect, $query);
// fetch the data from the database
while(odbc_fetch_row($result))
{
  $name = odbc_result($result, 1);
  $surname = odbc_result($result, 2);
  print("$name $surname\n");
}
// close the connection
odbc_close($connect);
?>
Sunday, July 1, 2012
Connecting to ODBC using PHP
7/01/2012
By:
 4evertutorials
On: 7/01/2012
  In: connect odbc via php, odbc_connect, odbc_fetch_row(
  No comments
Subscribe to:
Post Comments (Atom)
 





 
 
 
 


0 comments:
Post a Comment