<?php
$apple = "red";
echo "fire {$apple}\n";
echo "fire $apple\n";
echo "sca$apple\n";
echo "sca{$apple}\n";
echo "$appleuce\n";
echo "{$apple}uce\n";
?>