-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindices.php
executable file
·69 lines (60 loc) · 1.52 KB
/
indices.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
require("lib/simple_html_dom.php");
include("inc/header.php");
$listeHtml="";
if($dossier = opendir('./template/indices/'))
{
while(false !== ($fichier = readdir($dossier)))
{
if($fichier != '.' && $fichier != '..' && $fichier != 'index.php')
{
$contents = file_get_contents('template/indices/'.$fichier);
$listeHtml = $listeHtml . $contents;
}
}
}
$dom = str_get_html($listeHtml);
?>
<!--main-->
<div class="container">
<div class="row">
<!--left-->
<div class="col-md-3" id="leftCol">
<ul class="nav nav-stacked well well-lg" id="sidebar">
<?php
foreach($dom->find("div[class=acteur]") as $acteur)
{
//echo $acteur->id;
//echo $acteur->children(0)->innertext;
echo ' <li><a href="#'.$acteur->id.'">'.$acteur->children(0)->innertext.'</a></li>';
}
?>
</ul>
</div><!--/left-->
<!--right-->
<div class="col-md-9">
<?php
foreach($dom->find("div[class=acteur]") as $acteur)
{
echo '<div class="paragraphe">';
echo ' <h2 id="'.$acteur->id.'">'.$acteur->children(0)->innertext.'</h2>';
echo "<hr>";
echo "<p>";
echo $acteur->children(1)->innertext;
echo "</p>";
echo '</div>';
}
?>
</div><!--/right-->
</div><!--/row-->
</div><!--/container-->
<?php
include("inc/footer.php");
?>
<script language="javascript">
$("#listeHeaderIndices").addClass("active");
$("#autre").addClass("active");
//parse();
</script>
</body>
</html>