Something like Wordpres

Hello guys, I know nothing on php, but I’ve been experiencing with wordpress, and I love the php function to call upon other pages, example:

<?php get_header(); ?> (gets header info)
changing content code
<?php get_footer(); ?> (gets footer info)

I want to implement something like this on my own page, but I’m quite lost on where to start and search for. Any help would be appreciated.

Try the PHP include function:

<?php include(“file_to_include.php”); ?>

It’s always a good idea to name your include files .php to prevent anyone from reading the source code.

http://php.net/manual/en/function.include.php

worked like a charm, thanks for the links as well!