mirror of
https://github.com/php/web-php.git
synced 2026-03-30 19:22:17 +02:00
21 lines
565 B
PHP
21 lines
565 B
PHP
<?php require "header.inc"?>
|
|
<H1>Encoding</H1>
|
|
<H2>Base64</H2>
|
|
<?example('<?php
|
|
echo ($encoded = base64_encode(
|
|
"A rose by any other name..."));
|
|
echo ($decoded = base64_decode($encoded));
|
|
?>');?>
|
|
<?php
|
|
output(($encoded = base64_encode("A rose by any other name...")).
|
|
"<BR>".
|
|
($decoded = base64_decode($encoded)));
|
|
?>
|
|
<H2>HTML</H2>
|
|
<?example('<?php
|
|
echo htmlspecialchars(
|
|
"This & that are <problems>.");
|
|
?>');?>
|
|
<?php output(htmlspecialchars(htmlspecialchars("This & that are <problems>."))); ?>
|
|
<?php require "footer.inc"?>
|