Using the php Include Function to Reuse Code

In this tutorial series, we’re creating a simple 2 page website in which each page allows users to post comments. In our previous articles, we’ve created and setup our database, and we’ve created the html form that will allow users to type in and submit their comments. In this article, we now need to incorporate our HTML form into our 2 pages. This can be done using the Include php function.

Creating our Test website

At this point in our tutorial, we need to create the 2 pages that will appear on our website. As the purpose of this tutorial is not to show you how to create a basic website using HTML, we won’t go through the process of creating those two pages. We’ve created the two pages (page1.php and page2.php) and they can be seen below:

page1.phppage2.php
this-is-page1

 

 
this-is-page2

 

 

Adding our HTML form to our website using PHP’s include function

In our previous article, we created an HTML form. Because we only have 2 pages, we could copy and paste the same code onto each page. In this example, that could be OK. If we however had 100 pages, that would be quite a bit of work. Also, if we had to make a change to that form, we would need to make that change to 100 different pages, which would be very tedious.

To make this task easier, we will add our HTML form to a file called formcode.php and then include that file in each of our pages. If we go this route, if we needed to make a change to the form in the future, we would simply change the one formcode.php file and the change would affect all pages that included formcode.php.

To setup formcode.php and include it in your pages:

  1. create a new file named formcode.php and insert our form code (found in our previous article)
  2. add <? include("formcode.php"); ?> in both page1.php and page2.php where you would like the form to appear.

After following the steps above, your pages should look similar to the below screenshots and your code should look similar to the code sample below:

page1.phppage2.php
page1-with-the-form-added

 

 
page2-with-the-form-added

 

 
<h1>This is page1.php</h1>
<div><a href="page2.php?id=2">Click here</a> to go to page2.php</div>
<div style="margin: 20px; width: 100px; height: 100px; background: blue;"> </div>
<? include("formcode.php"); ?>

In our next tutorial, we’ll show you how to process the user’s comment after they have clicked the submit button to submit their comment.

10 thoughts on “Using the php Include Function to Reuse Code

  1. Hello, Thank you for the great effort and article and follow up.

    I’ve followed your examples but I have faced some confusions with the pages, but at last I’ve got 4 pages, my problem in the pages is : 

    what is working : the colors and links to each other and the ID on the address 

    what is not working :  it doesn’t show the form !!

    page 1 & 2 contains the same code (just change page ID) :

    <? include("manage_comments.php"); ?>
    <h1>This is page1.php</h1>
    <div><a href='page2.php?id=2'>Click here</a> to go to page2.php</div>
    <div style='margin:20px; width:100px; height:100px; background:blue;'></div>
    <? include("formcode.php"); ?>

     

    Formcode.php contains :

    <form method='post'>
      NAME: <input type='text' name='name' id='name' /><br />
      Email: <input type='text' name='email' id='email' /><br />
      Website: <input type='text' name='website' id='website' /><br />
      Comment:<br />
      <textarea name='comment' id='comment'></textarea><br />
      <input type='hidden' name='articleid' id='articleid' value='<? echo $_GET["id"]; ?>' />
      <input type='submit' value='Submit' />
    </form>

    Thank you

    1. Tom, I would recommend that you ensure that your “formcode.php” file is in the same folder as the page that you’re including it on. Also, I would check and make sure that the permissions and ownership for the file are correct. Finally, I would recommend checking the PHP error log for any related errors.

  2. I am an up and comming new business and this was very helpfull to understand who I need my domain to go through.

  3. i have done all, i seen here, but still any time i submit a comment to mysql database, it redirect to another page saying connected successful !! the only time i see user comment on the webpage is when i go back and refresh the page. please i need help with this immediately thanks

    1. Hello Jerry,

      Sorry to hear that you’re having problems with the php Code provided above. The issue you’re referring to should be addressed in the next article, How to process the user’s comment after they have clicked the submit button. If you have followed those directions and you’re still having issues, then please provide us more information (such as the code you’re using), or at least a URL, so that we can observer what you have done and troubleshoot if there is an existing problem.

      Regards,
      Arnel C.

Was this article helpful? Join the conversation!

Server Madness Sale
Score Big with Savings up to 99% Off

X