Variable interpolation : Print « Development « PHP






Variable interpolation

<?
$this = "this";
$that = "that";
$the_other = 2.2000000000;

print("$this,$not_set,$that+$the_other<BR>");

?>

           
       








Related examples in the same category

1.Format our strings with line breaks to make our PHP code lines short
2.Demonstrating that the syntax of print is quite flexible
3.Use Print command to output string
4.A PHP Script Including HTML
5.Dynamically Setting and Accessing Variables