Sidebars examples
Hallo_wereld.php
Code
<?php
$str1 = 'Hello';
$str2 = "World";
printf("%s %s", $str1, $str2); Output
Hello World
<?php
$str1 = 'Hello';
$str2 = "World";
printf("%s %s", $str1, $str2);