Hi i'm n00b in php coding and i have to execute a C++ compiled for win xp program (.exe) from a php page.
The program takes as arguments 2 files: 1st contains parameters, 2nd contains input file. It gives as output another file (as specified in the 1st argument)
when executing from a dos-shell (and all goes ok) i write:
programname param_file source_file
when executing from the php page i tried:
exec("programname param_file source_file");
and
system("programname param_file source_file");
all files and libraries used by program are in the same folder of the php page, but no output file is given... what am i getting wrong?!? 😕
Cheers :p