Jump to content

PHP Include and google


st0rmer

Recommended Posts

Depends on what you mean. Take this example:

 

 

home.inc

<p>This is just some text</p>

 

index.php

<html>

<head>
  <title>Test page</title>
</head>

<body>
<?php
include("home.inc");
?>
</body>
</html>

 

When someone (even google) sees index.php they wont know you have included home.inc. So in this case no problems. Was that what you ment?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.