
11-29-2004, 05:10 AM
|
|
SEO Junior and a half
|
|
Join Date: Nov 2004
Posts: 70
|
|
|
Just keep in mind that by doing so you are requesting the server to parsed using php. This can cause a lot of unnecessary load on the server and may even cause severe slow down in loading pages (if you have a lot of requests at the same time).
You can use html file and use php include:
ex.
<?php
include("ind.php");
?>
Or you can create a function and include it through ssi.
In general php files are server-side, means upon being called they are parsed into regular html, so once being spidered all the se sees is plain html.
Let me know if you neem more help with php, I'll be glad to help.
|