Result Size:
625 x 571
tryphp_datatypes_string.php:
<!DOCTYPE html> <html> <body> <?php $x = "Hello world!"; $y = 'Hello world!'; echo $x; echo "<br>"; echo $y; ?> </body> </html>
Hello world!
Hello world!