From: "Luke" <[EMAIL PROTECTED]>
echo getcwd() . "\n";
chdir('c:\\temp');

echo getcwd() . "\n";
chdir('c:\\Przewozy\\BAZY');
echo getcwd() . "\n";

$db = dbase_open("c:\\Przewozy\\BAZY\\Ceny.dbf", 0);

Just a quick guess/suggestion:
Single tick quotes ' are taken literally and double tick quotes " allow expansion.
$aVariable = 0;
echo '$aVariable';//$aVariable
echo "$aVariable";//0
Maybe change the chdir to use double quotes or remove the double backslash? Especially if your dbase_open works with double quotes and the double backslash.

_________________________________________________________________
http://im.live.com/messenger/im/home/?source=hmtextlinkjuly07

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to