First instance file creation later reading the parameters from that file

sree

New member
hello,
pl. suggest me with your valuable answers.

After creating and running exe our application ask for some parameters and these parameters will be stored in one our folder as php file.

when we close the application and re-open it should read the file stored in our folder and found it should go to next action.

we are able to do this offline w/o exeoutput conversion. how to achieve after converting as exe.

pl. help me.

regards
 
Take look at this
1120_2.png
How to find file path in exe ExeOutput for PHP
Something like this $exe_file = exo_getglobalvariable("HEPublicationFile", "0"); $config_path_parts = explode("\\",$exe_file); $config_file_last = count($config_paht_parts)-1; $config_path_parts[$config_file_last] = "config.ini"; $config_file = implode("\\",$config_path_parts); or if you know exe file name $config_file = str_replace("\\my_app.exe","\\config.ini");
 
Back
Top