1<?php 2 /*ORIGINAL CREATOR: Luca Garofalo (Lucksi) 3 AUTHOR: Luca Garofalo (Lucksi) 4 Copyright 2022-2023 Lucksi <[email protected]> 5 License: GNU General Public License v3.0*/ 6 7 function Decode($content){ 8 $converted = base64_decode($content); 9 $String = utf8_encode($converted); 10 return $String; 11 } 12?> 13