Hello,
For all the subpages with the parameter of the GET charged me with some content-dependent file name of the page and the selected language. The problem is not the script but its visibility through the validator, because on this website, does not see the validator that the party index_content has been loaded and displays the code as:
My code of index.php (the only important part):
Once again, the page works properly index the content is loading, but why validator can not see? how to make saw. And if not, how to eliminate a bug in validatorze, but without deleting the table, just by typing there something that does not spoil other subpages, and does not add any apparent content. :>
For all the subpages with the parameter of the GET charged me with some content-dependent file name of the page and the selected language. The problem is not the script but its visibility through the validator, because on this website, does not see the validator that the party index_content has been loaded and displays the code as:
HTML:
<table class="contentpaneopen"> // there should be loaded index file content, and indeed it is, but the validator can not see
</table>
My code of index.php (the only important part):
PHP:
<table class="contentpaneopen">
<?php
$album = $_GET['album'];
if (!empty($page) && empty($album)) {
include ($langs . '/' . $page . '.php');
} else if (($page == 'gallery_album') && !empty($album)) {
include ( 'galeria/' . $album . '.html');
} else if (empty($page) && empty($album)) {
include ($langs . '/' . 'index_content.php');
} else {
include ($langs . '/' . 'index_content.php');
}
?>
</table>
Once again, the page works properly index the content is loading, but why validator can not see? how to make saw. And if not, how to eliminate a bug in validatorze, but without deleting the table, just by typing there something that does not spoil other subpages, and does not add any apparent content. :>