Hello everyone.
I joined several category on a page to add different information.
When Google finds a very specific ad on the page I have built several classes, the announcement is multiplied at each place where the different categories have been added.
Look at the example here:
http://www.eburnilive.com/home.php?id=3
Would there be a solution to solve this problem?
Otherwise it will take that publishers publishes an update to fix this will be good.
But I'll be happy to find a solution to my worries.
Hello Sir
I am happy to have a reply to my message.
I just visited the link you gave me,
I fully understand all the explanations.
I used this method to integrate
the informations in my web page:
METHOD:
<? Php
$ Cat [] = 'Cat1';
include 'news/index.php';
?>
It works perfectly.
and I even added several categories on one page
using the method above.
and it works perfectly.
But when you make a very specific search from Google or other search engine,
and research developed one integrated information on my page that I integrated several categories, specific information multiplies instead of integrated into different categories by before.
Look at this example here
You will notice that the information has multiplied on the page.
and those places where information is duplicated, is where I integrated the various categories of information.
HERE IS THE LINKS:
http://www.eburnilive.com/home.php?id=6
http://www.eburnilive.com/home.php?id=3
www.eburnilive.com/radio_sud_bandama.php?id=2
Access: Admin
Total Posts: 1395
Joined: 2006-05-19
I think I understand the problem now. To stop this from happening you specify the $static variable like so
Code:
<?php $static = true; // The above line is important
$cat[] = "Cat1"; include 'news/index.php; ?>
Code:
<?php $cat[] = "Cat2"; include 'news/index.php'; ?>
What the above example will do is display 2 includes, when you click on an individual article, it will only get displayed in the second include because the first include is set to "static" which means not to change.
Hello Sir
Thank you for the help provided above.
In my page I integrate 5 categories, then I make a class without the static $ option [] = true;
When I assign the option $ static = true
the different categories it is impossible to see all the information by clicking on FULL STORY.
And the full story appears in the place where the class was placed without the static option.