Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

if ($currentStage == 7)
{
  echo include("include/contentP7.php");

}

The content of "content7.php" exists however it is blank. But when $currentStage is equal to 7 the page is displayed and a random "1" is outputted although "content7.php" is blank.

I assume it may be to do with returning "True" to the if statement. Why is this and how can I remove this "1".

share|improve this question
Try removing the echo – Clyde Lobo Feb 1 '12 at 20:23
drop the "echo". – j08691 Feb 1 '12 at 20:23

3 Answers

up vote 7 down vote accepted

include returns TRUE upon success, when echoed, it becomes 1.

Omit the echo statement:

if ($currentStage == 7) {
    include("include/contentP7.php");
}

Include should be on its own.

share|improve this answer
Thank you very much – NeverPhased Feb 1 '12 at 20:22

include probably returns true(1) when includei successful. Remove the echo to get rid of the 1

share|improve this answer
if ($currentStage == 7)
{
    include("include/contentP7.php");
}

I don't understand what the other parts were intended to do. If you wanted to echo a value from contentP7, place that content into a variable (perhaps a HEREDOC or something). Then include and echo like this:

if ($currentStage == 7)
{
    include("include/contentP7.php");
    echo $contentP7_variable;
}

The "1" or True value might be returned because you are echoing the returned status of the include() but I am not sure how since php.net's manual explains that it is a language construct. I can't test this right now, unfortunately.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.