//CONEXION ODBC GENERICA - SE DEBERA REGISTRAR EN EL SERVIDOR (Origenes de datos 0DBC) UN DSN QUE APUNTE A LA BASE DE DATOS CORRESPONDIENTE
//CONEXION PHP
$dsn="DSN CON QUE SE REGISTRO LA CONEXION";
$usuario="USER";
$pass="PASSWORD";
$conexion=odbc_connect($dsn, $usuario, $pass);
//LUEGO SE LLAMA A $conexion en las consultas y estaremos interactuando con la base
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.