文書を家に持ち帰る方法

This is a disclosure of how to bring back documents I write at the firm to my home without using email or USB.
Speak out, that is, to preserve the document to the rented server.
I wrote a program in PHP that can save the document to the rented server.
It is very easy to write for saving the document.
One sentence like file_put_contents(“content”); enables it.
All you need to do is display this web page, write the document, copy and paste it, and submit it.
The only concern is that when you submit it from the browser to the server, it may be readable.
To avoid this, before submitting to the server, I decided to encrypt the contents.
Sorry to talk about something that doesn’t matter.

職場で書いた文書を家に持ち帰る方法の種明かしです。
メールでもなく、USBも使わない方法です。
ズバリそれはレンタルサーバーに文書を保存するという方法です。
レンタルサーバー上に文書を保存するプログラムをphp言語で書いたのです。
文書をファイルに保存するプログラムなんてとっても簡単です。
file_put_contents(“保存する文章”);の一文で可能です。
これで、ブラウザでこのサイトを表示して中のテキストボックスに文書をコピペして送信するだけです。
問題はブラウザからサーバーに送信するときに読まれる可能性があるということです。
これを排除するために、ブラウザからサーバーに送信する前に内容を暗号化することにしました。
どうでも良い話をしてゴメン。(18時18分)