Hi all,
this is my problem: I need to "exec" the following command:
C:\Programmi\So ft\soft.exe -v -d C:\dati\$nomefi le
C:\dati\pdf\$fi lename
and i tried to execute it in php with (one of) the following lines....
exec("C:\Progra mmi\Soft\soft.e xe -v -d C:\dati\.$nomef ile
C:\dati\pdf\.$f ilename");
exec("C:\Progra mmi\Soft\soft.e xe" -v -d "C:\dati\".$nom efile
"C:\dati\pdf\". $filename);
exec("C:\\Progr ammi\\Soft\\sof t.exe -v -d C:\\dati\\.$nom efile
C:\\dati\\pdf\\ .$filename");
exec("C:/Programmi/Soft/soft.exe -v -d C:/dati/.$nomefile
C:/dati/pdf/.$filename");
exec("C:/Programmi/Soft/soft.exe" -v -d "C:/dati/".$nomefile
"C:/dati/pdf/".$filename );
but there is something wrong and that i.. do not understand...
Is there anyone so kind to show me the correct line and a couple of
comments on how to built it? I tried to search for it (manual,
newsgroups...) but i haven't found it (and my mistakes are the result
:-P)
Thanks in advance,
Giorgio
System:
Windows 2000 Server (Italian)
PHP 4.4.4
Apache 2.0.59
Mysql 4.1.21
this is my problem: I need to "exec" the following command:
C:\Programmi\So ft\soft.exe -v -d C:\dati\$nomefi le
C:\dati\pdf\$fi lename
and i tried to execute it in php with (one of) the following lines....
exec("C:\Progra mmi\Soft\soft.e xe -v -d C:\dati\.$nomef ile
C:\dati\pdf\.$f ilename");
exec("C:\Progra mmi\Soft\soft.e xe" -v -d "C:\dati\".$nom efile
"C:\dati\pdf\". $filename);
exec("C:\\Progr ammi\\Soft\\sof t.exe -v -d C:\\dati\\.$nom efile
C:\\dati\\pdf\\ .$filename");
exec("C:/Programmi/Soft/soft.exe -v -d C:/dati/.$nomefile
C:/dati/pdf/.$filename");
exec("C:/Programmi/Soft/soft.exe" -v -d "C:/dati/".$nomefile
"C:/dati/pdf/".$filename );
but there is something wrong and that i.. do not understand...
Is there anyone so kind to show me the correct line and a couple of
comments on how to built it? I tried to search for it (manual,
newsgroups...) but i haven't found it (and my mistakes are the result
:-P)
Thanks in advance,
Giorgio
System:
Windows 2000 Server (Italian)
PHP 4.4.4
Apache 2.0.59
Mysql 4.1.21
Comment