<!DOCTYPE html> <html lang = "en-US"> <head> <meta charset = "UTF-8" /> <title>helloInterpolation</title> </head> <body> <?php $firstName = "John"; $lastName = "Doe"; print "<p>Hello $firstName $lastName!</p>"; ?> </body> </html>