To load a backup file into a database I'm using the next string.
echo passthru ('c:\\mysql\\bin\\mysql --force camerazimma15770 < C:\\mysql\\bin\\backup.sql');
It works fine on my PC but not on the one I need to install the script on. The only difference is in the Mysql version: 4 vs 3.23. What I get back with the last is exactly what you get back running "mysql --help".
Is there a solution without changing MySQL version?
Is it really a problem of MySQL version or might PHP be the reason?