Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7414583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:07:44+00:00 2026-05-29T07:07:44+00:00

I am a programmer and I am picking up PHP, I cannot seem to

  • 0

I am a programmer and I am picking up PHP, I cannot seem to search for this so I hope this is not a duplicate. Currently this is giving me an error at line 4 on header.php which says:
unexpected $end

I know that it is complaining about the syntax but I don’t fully understand how the files are parsed processed and get executed at runtime (hence creating this error). I would be grateful if somebody can fill me in if I have missed any core concept in PHP, thanks.

header.php

<?php
if(true){
    echo "Helloworld";
?>

body.php

<?php
include('header.php');

echo "The great brown fox jumps over the lazy dog.";

include('footer.php');
?>

footer.php

<?php
}else{
    echo "bye bye";
}
?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T07:07:46+00:00Added an answer on May 29, 2026 at 7:07 am

    Each file included must be able to be parsed on its own without a syntax error. Your header has a syntax error of an unclosed if block. Likewise, the footer has a syntax error of an else block coming out of nowhere. You cannot do it this way.

    Instead you can use something like:

    // Global variable defined above includes:
    $condition = TRUE;
    include('header.php');
    echo "The great brown fox jumps over the lazy dog.";
    include('footer.php');
    
    
    // header.php
    if ($condition) {
      echo "hello world";
    }
    
    // footer.php
    if (!$condition) {
      echo "bye";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a PHP programmer doing some BASH scripting and I'm not sure how global
I am not a programmer, I am struggling a bit with this. I have
As programmer I need to filter, search and validate data every day. For all
Beginner programmer here....hope it makes sense :) I have created a console app that
I'm not a programmer, but I did manage to develop our company site in
A programmer installed jquery lightbox and everything was working fine on http://www.ozhiphopshop.com.au/sub_photos.php?id=11 I wanted
Aspiring programmer here! You can skip this part if you find it irrelevant. Im
I'm a .net programmer vb & c#, but I can't seem to figure out
I am a student programmer currently designing a GUI for my company with Qt
As a PHP programmer new to Perl working through 'Programming Perl', I have come

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.