Highlight Example

```php

{% endhighlight %}

<?php
  $a = 1;
  $b = 2;
  $sum = $a + $b;

  echo "The sum is: $sum";
?>