3
I have already made a correct connection with Firebird using PHP, however I would like to know how I can make one select
in a certain bank. Can someone please help me?
<?php
$user = "SYSDBA";
$pass = "masterkey";
try{
$lokos=new PDO("firebird:localhost=ja sei 0;dbname=ja sei também",$user,$pass);
}catch(PDOException $e) {
echo "Falha na conexão.".$e->getcode();
}
?>
http://answall.com/questions/68232/usar-pdo-%C3%A9-a-more-secure-way-to-connect-a-bd-com-php already gives an idea of how to get started
– rray