<?php $city = "Berlin"; $single = 'Weather in $city'; $double = "Weather in $city"; echo $single; // Weather in $city echo "\n"; echo $double; // Weather in Berlin ?>
Click Run to execute this code.