<!DOCTYPE html> <html> <body> <?php $var = "a"; $var2 = 23; echo $var; echo "<br/>"; echo $var2; echo $var." : bonjour !"; ?> </body> </html>