For security reasons it is nessery to define all pages you will use. Instead using content.php?page=index.php you may use content.php?page=1. Here is a code with SWITCH / CASE statements.
switch ($page)
{
case "1": //home
include ("home.php");
break;
case "2": //about us
include ("aboutus.php");
break;
...
...
...
etc.
default: //all other cases
echo "not allowed!";
}