phpでexeを開く方法は?
私はこの考えを持っていて、数年間それを成功させるのに苦労しましたが、ついに失敗しました。誰かが仕事をするための成功方法を教えてくれますか?
<?php
if(isset($_POST['file_path'])){
/* -------
using "notepad++.exe" to open "test.php" file.
or run a bat file which calling "notepad++.exe" to open "test.php" file.
how to seting php.ini or firefox or any setting to do this job.
it is only for conveniently developing web page in my PC ,not for web servers
------- */
}
?>
<form action="test.php" method="post">
<input type="text" name="file_path" value="test.php"/>
<button type="submit">open with notepad++</button>
</form>
これにより、次のようなものが作成されます。