Nieuw lid |
|
Hallo,
Ik gebruik momenteel het volgende script:
<?php
include 'library/config.php';
include 'library/opendb.php';
$cacheDir = dirname(__FILE__) . '/cache/';
if (isset($_GET['title'])) {
$cacheFile = $cacheDir . '_' . $_GET['title'] . '.html';
} else {
$cacheFile = $cacheDir . '?title=home';
}
if (file_exists($cacheFile))
{
header("Content-Type: text/html");
readfile($cacheFile);
exit;
}
if(!isset($_GET['title']))
{
$self = $_SERVER['PHP_SELF'];
$query = "SELECT id, title FROM pagina ORDER BY id";
$result = mysql_query($query) or die('Error : ' . mysql_error());
$content = '<ol>';
while($row = mysql_fetch_array($result, MYSQL_NUM))
{
list($id, $title) = $row;
$content .= "<li><a href=\"$self?title=$title\">$title</a></li>\r\n";
}
$content .= '</ol>';
$title = 'Bestaande paginas';
} else {
$query = "SELECT title, content FROM pagina WHERE title='".$_GET['title']."'";
$result = mysql_query($query) or die('Error : ' . mysql_error());
$row = mysql_fetch_array($result, MYSQL_ASSOC);
$title = $row['title'];
$content = $row['content'];
}
include 'library/closedb.php';
ob_start();
?>
<?php include 'library/config.php'; include 'library/opendb.php'; $cacheDir = dirname(__FILE__) . '/cache/'; if (isset($_GET['title'])) { $cacheFile = $cacheDir . '_' . $_GET['title'] . '.html'; } else { $cacheFile = $cacheDir . '?title=home'; } { header("Content-Type: text/html"); } if(!isset($_GET['title'])) { $self = $_SERVER['PHP_SELF']; $query = "SELECT id, title FROM pagina ORDER BY id"; $content = '<ol>'; { list($id, $title) = $row; $content .= "<li><a href=\"$self?title=$title\">$title</a></li>\r\n"; } $content .= '</ol>'; $title = 'Bestaande paginas'; } else { $query = "SELECT title, content FROM pagina WHERE title='".$_GET['title']."'"; $title = $row['title']; $content = $row['content']; } include 'library/closedb.php'; ?>
en in de div gebruik ik:
<?php echo $content;?>
het werkt super ik wil alleen nog 1 ding aanpassen. Als ik naar de site ga wil ik graag de pagina home standaard krijgen. Momenteel krijg ik een overzicht van alle pagina's. Maar ik wil graag dat ie standaard de pagina home opent.
Wie kan mij daarbij helpen?
Ik heb namelijk al geprobeerd dingen aan te passen in het script. De naam van de eerste pagina is home.
Hardstikke bedankt alvast
vinTage edit: code tags maken het geheel duidelijker te lezen
|