Somebody please tell me why the first statement works and the second doesn't.
1.
...
$dbh=ibase_connect("host","$user","$pass") or die("Connection Error");
$q="SELECT * FROM mytable";
$result=ibase_query($q) or die("SELECT Error");
...
2.
...
$dbh=ibase_connect("host","$user","$pass") or die(
Hi,
Let me help with this problem, please.
Have anyone any idea why the first statement works and the second not ?
1.
$dbh=ibase_connect($host, $user, $pass) or die("Connection error");
$result=ibase_query("select * from tablename");
...
ibase_close();
2.
$dbh=ibase_connect($host, $user, $p