I have this file batch (test.bat), that contains these
javac c:\Hello.java
I can run this batch file using PHP ..
<?php
system("cmd /c C:\\test.bat");
?>
but I want to enter the name of java file from PHP code how can I send this parameter to batch file,, what is the required modifications in batch file and php code ?