<?php
$txt1="Learn PHP";
$txt2="W3xue.com";
$cars=array("Volvo","BMW","SAAB");
echo $txt1;
echo "\n";
echo "Study PHP at $txt2";
echo "My car is a {$cars[0]}";
?>