base64でエンコードされたデータを使用して、BLOBデータ型でデータベースに格納します。ボイラープレートコードは次のとおりです。
$content = '<html>
<head>
<script>--Some javascript and libraries included--</script>
<title></title>
</head>
<body>
<style>--Some Styling--</style>
</body>
</html>';
base64でデータをエンコードするには
$encodedContent = base64_encode($content); // This will Encode
そして、BLOBを使用してデータベースにデータを保存します。データを取得したら、次のようにデコードします。
$ContentDecoded = base64_decode($content); // decode the base64
ここで、 $ contentDecodedの値 プレーンHTMLです。