Result Size: 625 x 571
<!DOCTYPE html>
<html>
<body>

<?php
$str = "Welcome to my humble Homepage!";
echo $str."<br>";
echo addcslashes($str,'A..html')."<br>";
echo addcslashes($str,'a.-2.html')."<br>";
echo addcslashes($str,'a.-3.html');
?>

 
</body>
</html>