how to make an interface in php to be able to use FilemailCli.exe where you have the parameters: /files /to /from /subject /message /transferpassword /notify /confirmation /days which stores them in different variables where the /files parameter can call the variable with the file path and the /to /from /subject /message parameters store the information in the different textboxes. and a button to execute all the parameters linked to the FilemailCli.exe file within the same path saved in the project.
<!DOCTYPE html> <html> <body> <form action="test.php"> First name:<br> <select name="files"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat">Fiat</option> <option value="audi">Audi</option> </select> <br> Last name:<br> <input type="text" name="lastname"> <br><br> <input type="submit" value="Submit"> </form> <p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p> </body> </html>