私の目的: クリックすると単語文書を生成するボタン (またはハイパーリンク) を作成します。
以下は私が作成したコードですが、機能していません。エラーは表示されません。PHP がサーバー側のスクリプト言語であることは承知しているので、それと関係があると思います。
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
function createReport() {
$fp = fopen("report.doc", 'w+');
$str = "This is the text for the word file created through php programming";
fwrite($fp, $str);
fclose($fp);
return false;
}
</script>
ハイパーリンク:
echo '<a href="#" onclick="createReport();">Generate</a>';