Archive for January, 2007

Habilitando el soporte a InterBase en PHP 5

Versão em Português clique aquiEnglish Version click herePara soportar el InterBase en PHP usted necesita habilitar el “extensions“ para InterBase, siguiendo los pasos abajo.1 - Abra el archivo PHP.INI localizado en la carpeta bin de su servidor Apache2 - Remueva comentario en la línea extension=php_interbase.dll (excluya el carácter punto y coma )3 - Grabe el archivo4 - Reinicie el servicio de PHPEsta “extension” soporta [...]

Posted by Andreano Lanusse on January 8th, 2007 under PHP, Spanish | Comment now »

Habilitando o suporte ao InterBase em PHP 5

English Version click hereVersión en Español clic acáPara suportar o InterBase em PHP é necessário habilitar o “extensions“ do InterBase, siga os passos abaixo.1 - Abra o arquivo PHP.INI que está no diretório bin do seu servidor Apache2 - Remova o comentário da linha extension=php_interbase.dll (exclua o caracter ponto e vírgula )3 - Grave o arquivo4 [...]

Posted by Andreano Lanusse on January 8th, 2007 under PHP | Comment now »

Enabling InterBase support in PHP 5

Versão em Português clique aquiVersión en Español clic acáTo enable InterBase support in PHP is necessary to enable InterBase extensions, following these steps.1 - Open the PHP.INI file. This file is located in: <apache directory>bin2 - Remove the comment from the line extension=php_interbase.dll (remove the semicolon-“;” character )3 - Save the file4 - Restart your [...]

Posted by Andreano Lanusse on January 8th, 2007 under PHP | Comment now »

Making an InterBase connection and reading the result query in PHP Language

Versão em Português clique aquiVersión en Español clic acáHow do you make connection, execute query and read the result set from InterBase database using PHP Language. See below:$dbconn = ibase_connect (‘localhost:C:\CodeGearInterBaseexamplesdatabaseemployee.ib’, ’sysdba’, ‘masterkey’); $stmt = ‘SELECT * FROM EMPLOYEE’; $sth = ibase_query ($dbconn, $stmt); while ($row = ibase_fetch_object ($sth)){   print $row->FIRST_NAME . "";} ibase_close ($dbconn);?>
Share This [...]

Posted by Andreano Lanusse on January 5th, 2007 under English, PHP | 4 Comments »

Haciendo conexi

English Version click hereVersão em Português clique aquiComo hacer una conexión, ejecutar un query y leer el lo resultado en una base de datos InterBase usando el lenguaje PHP, vea abajo:$dbconn = ibase_connect (‘localhost:C:\CodeGearInterBaseexamplesdatabaseemployee.ib’, ’sysdba’, ‘masterkey’); $stmt = ‘SELECT * FROM EMPLOYEE’; $sth = ibase_query ($dbconn, $stmt); while ($row = ibase_fetch_object ($sth)){   print $row->FIRST_NAME . "";} ibase_close [...]

Posted by Andreano Lanusse on January 5th, 2007 under PHP, Spanish | Comment now »

Conectando e efetuando Query no InterBase em PHP

English Version click hereVersión en Español clic acáComo efetuar uma conexão, executar query e ler o resultado em um banco de dados InterBase usando a linguagem PHP, veja abaixo:$dbconn = ibase_connect (‘localhost:C:\CodeGearInterBaseexamplesdatabaseemployee.ib’, ’sysdba’, ‘masterkey’); $stmt = ‘SELECT * FROM EMPLOYEE’; $sth = ibase_query ($dbconn, $stmt); while ($row = ibase_fetch_object ($sth)){   print $row->FIRST_NAME . "<br/>";} ibase_close ($dbconn);?>
Share [...]

Posted by Andreano Lanusse on January 5th, 2007 under PHP | Comment now »


Server Response from: blogs2.codegear.com

 
© Copyright 2008 Embarcadero Technologies, Inc. All Rights Reserved. Contact Us  |   Site Map  |   Legal Notices  |   Privacy Policy  |   Report Software Piracy