Hello,
In db_layer for access there is it code:
$db_conf["server"] = "odbc:Driver={Microsoft Access Driver (*.mdb)};Dbq=".dirname(__FILE__)."/../../sampledb/northwind.MDB;Uid=;Pwd=;";
Then, where is this folder specifically?
Thank you
This path is relative to the jqgrid_dist.php folder location.
You can specify it relative like above or absolule too, like c:/test/test.mbd OR in linux /opt/test/test.mdb
Ok Abu,
Thank you by you explain, equally would be interesting to read file using FTP; so this is way i´m doing it:
<?php
$filename = 'ftp://username:password@hostname/files/path/and/name.txt';
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
echo $contents;
?>
This is correct to integrate with grid?
Thank you!
I don't understand your complete scenario, but you can download the file using ftp and give local path of database for php grid.