Download PHP logos

PHP.net hosts numerous approved PHP logos including ICO files for desktop programs, PNG, GIF buttons, chicklets and more. These logos can be used even on commercial websites with the only requirement being that if the logo will be used for merchandising — for example, t-shirts with the PHP logo — licensing approval must be obtained […]

PHP Hello world!

Welcome to the PHP-scripts blog. Though I’m not a huge fan of ‘Hello World’ stuff, it seems that is where most things in the programming world start out. So here we go with examples using print and echo
Hello World using print statement

<?php
print ‘Hello World!’;
?>

Hello World using echo

<?php
echo ‘Hello World!’;
?>

What is the difference between […]