Sidebars examples

Sidebar

Hallo_wereld.php

Code
<?php
$str1 = 'Hello';
$str2 = "World";

printf("%s %s", $str1, $str2);
Output
Hello World