169 | 🔍 ".$output."
";
189 | }else{
190 | echo "
📂 ".$output."
";
191 | }
192 | }else{
193 | # I could probably use something like
tags here, but I'd rather do it this way just in case:
194 | $output = preg_replace("/&/","&",$output); # replace all ampersands, do this first so I can add them back for other chars
195 | $output = preg_replace("/","<",$output); # replace all less thanh (open HTML tag brackets)
196 | $output = preg_replace("/>/",">",$output); # replace all greater than (close HTML tag brackets)
197 | $output = preg_replace("/%/","%",$output); # replace all percent (hex ascii chars)
198 | $output = preg_replace("/\?/","?",$output); # replace all question marks (open PHP tag brackets)
199 | $output = preg_replace("/\\$/","$",$output); # replace all question marks (open PHP tag brackets)
200 | $output = preg_replace("/\s/"," ",$output); # replace all whitespace, for rendering
201 | echo $output."
";
202 | }
203 | }
204 | }else{
205 | echo $output."
"; # dump message
206 | }
207 | ?>
208 |
215 |
216 |
235 |
236 |
237 |