Just for fun...

[php]
$helloworld = ‘Hello World!’;
printf(’%s’, $helloworld);
[/php]

[php]
$helloworld = ‘Hello World!’;
$helloworld = sprintf(’%s’, $helloworld);
echo $helloworld;
[/php]
[php]
$helloworld = ‘Hello World!’;
$helloworld = sprintf(’%s’, $helloworld);
print $helloworld;
[/php]
[php]
$helloworld = ‘Hello World!’;
$helloworld = sprintf(’%s’, $helloworld);
print($helloworld);
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service