'Home', 2 => 'About myself', 3 => 'What I\'ve done so far', 4 => 'Who I would like to be', 5 => 'Contact me via webform' ]; if ( ! isset ( $_POST ['section'] ) || ! in_array ( $_POST ['section'], array_keys( $sections ) ) ) { $section_title = 'Home'; } else { $section = $_POST ['section']; $section_title = $sections [ $section ]; $sections_content = [ 1 => '

Bryan Joshua Pedini

An eighteen years old guy from Italy, with just some great ideas
', 2 => '

About Me

This is what I do.
', ]; $arr_res = [ 'status' => 200, 'pageTitle' => $section_title, 'html' => $sections_content [ $section ] ]; $res = json_encode($arr_res); header('Content-Type: application/json'); echo $res; exit; } ?> <?=$section_title?> | Bryan Pedini