Twee keer "dezelfde" includes op één pagina
Ik heb twee "weblogs" door twee keer hetzelfde programma te installeren, wel de tweede keer met een andere prefix zodat er andere tables gemaakt worden. Vraag me niet waarom ik er twee heb, dat is een menselijk (directie enz.) probleem en geen technisch probleem. Beide programma's werken.
Nu wil ik op de index.php de laatste berichten laten zien via een include (een term die ik nog niet zo lang ken).
Eerst proberen, dacht ik, in een gewoon bestand, de code staat hieronder. Het gaat om map bmachine1 en bmachine4
<body>
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<?php
$path_config = realpath ("bmachine4/config.php");
$path_main = realpath ("bmachine4/bmc/main.php");
include_once "$path_config";
include_once "$path_main";
bmc_show_list('posts','','<br />',1,3);
?>
$path_config = realpath ("bmachine4/config.php");
$path_main = realpath ("bmachine4/bmc/main.php");
include_once "$path_config";
include_once "$path_main";
bmc_show_list('posts','','<br />',1,3);
?>
<table width="80%" >
<tr>
<td bgcolor="#dff1ff">
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<?php
$path_config = realpath ("bmachine1/config.php");
$path_main = realpath ("bmachine1/bmc/main.php");
include_once "$path_config";
include_once "$path_main";
bmc_show_list('posts','','<br />',1,2);
?>
$path_config = realpath ("bmachine1/config.php");
$path_main = realpath ("bmachine1/bmc/main.php");
include_once "$path_config";
include_once "$path_main";
bmc_show_list('posts','','<br />',1,2);
?>
</tr>
</table>
<tr><td bgcolor="#FFFF00"><p> </p>
</body>
Wat krijg ik echter te zien? twee keer hetzelfde, twee keer
<body>
<a href="http://www.dezuidwester.net/bmachine4/index.php?id=3" title="Nieuw, nieuw, nieuw">Nieuw, nieuw, nieuw</a><br />
<a href="http://www.dezuidwester.net/bmachine4/index.php?id=2" title="Checklist Engels, klas 2 en 3">Checklist Engels, klas 2 en 3</a><br />
<a href="http://www.dezuidwester.net/bmachine4/index.php?id=1" title="Derde (en definitieve?) versie mededelingen">Derde (en definitieve?) versie mededelingen</a><br />
<table width="80%" >
<tr>
<td bgcolor="#dff1ff"><a href="http://www.dezuidwester.net/bmachine4/index.php?id=3" title="Nieuw, nieuw, nieuw">Nieuw, nieuw, nieuw</a><br />
<a href="http://www.dezuidwester.net/bmachine4/index.php?id=2" title="Checklist Engels, klas 2 en 3">Checklist Engels, klas 2 en 3</a><br />
</td>
</tr>
</table>
<tr><td bgcolor="#FFFF00"><p> </p>
</body>
Wie heeft de oplossing?
Er zijn nog geen reacties op dit bericht.