nose como hacerlo consigo acceder a la base de datos con el siguiente codigo php, pero me gustaria copiar toda la base en mysql me podeis ayudar??
gracias
Código PHP:
<?php
$dbConnection = ibase_pconnect('273.FDB', 'SYSDBA', 'masterkey');
$qry = "select * from individual where ARRIVALDATE > '2006-01-01'";
$qry = "select * from agr_main ";
$result = ibase_query($dbConnection, $qry);
while ($row = ibase_fetch_assoc($result))
{ print_r($row);
echo "<hr>";
}
?>