i need to run a web browser (chrome - firefox ..) using exec
i have tried to do it using bat file (this method mentioned here)
C:\Users\farok\AppData\Local\Google\Chrome\Application\chrome.exe www.google.com
when i open the file using windows every thing goes well but nothing happened when i open it using exec
and i have tried to do it using jar file by BrowserControl class
BrowserControl.displayURL("www.google.com");
and the same as bat file happened so is there any way to do it?
note:im using wamp 2.2 ,Apache 2.0 , PHP V5.3.8
Update
i found that after i run this command
exec('"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" "www.google.com" 2> errors.txt');
firefox dose open in task manager but the browser interface not visible .. any ideas?