How I started loving PHP :)

So, I am running this activity of cleaning up JNI Cookbook.

I have decided to move away from WordPress to something simpler (HTML + CSS) and nothing else. However, it turned out that this approach is quite inefficient – you have to fix template in so many places once you decide to change something. And this is how my love to PHP started :) As I don’t have anything apart from Perl and PHP (provided by hosting service), I have decided to use the later. Now, all my pages are really simple :)

<?php
  set_include_path(get_include_path().":"."..");

  include 'header.php';
  include 'middle.php';
  include 'mixture.php';
  include 'footer.php';
?>

and I like it this way.