# \[php\]Where comes this "1" from?

**URL:** https://forum.kirupa.com/t/php-where-comes-this-1-from/125605
**Category:** Uncategorized
**Created:** [October 15, 2004, 9:49am UTC](https://forum.kirupa.com/t/php-where-comes-this-1-from/125605 "2004-10-15T09:49:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![p\_stevens](https://avatars.discourse-cdn.com/v4/letter/p/b19c9b/32.png) [@p\_stevens](https://forum.kirupa.com/u/p_stevens)
#### Post date: [October 15, 2004, 9:49am UTC](https://forum.kirupa.com/t/php-where-comes-this-1-from/125605/1 "2004-10-15T09:49:12Z")

</div>

Hey all,

I am making a site, and a made a php code, but when i test it there will appear a 1 at the bottom of the page that i didn’t put there. I’ve checked the code but can’t find it…

Here is the code of the index:

```php

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

<?php 
$pagina = "" .strtolower($_GET['page']).".php";
if (file_exists($pagina))
{
echo include($pagina);
}
else
{
echo include('home.php');
}
?>
<?php include('footer.php'); ?>
</body>

```

And if you want to look at the site its over here:  
www.intermediamakers.nl/test/fakkert/index.php

So thanks for helping.  
Greetz
