Problem with "dynamic" index page
Posted on
16th Feb 2014 07:03 pm by
admin
Hi. I have one question. In my index.php page I have this kind of code:
Code: // listaa sivut
$pages = Array (
"etusivu" => "etusivu.php",,
"linkit" => "linkit.php",
"yhteydet" => "yhteydet.php",
"tiedotteet" => "tiedote.php",
"uutiset" => "uutiset.php",
"tapahtumat" => "tapahtumat.php",
);
// Jos sivua ei loydy, naytetaan etusivu
$page = ($_GET["page"] != "") ? $_GET["page"] : "etusivu";
if (isset($pages[$page]) AND file_exists($pages[$page])) {
include ($pages[$page]);
} else {
// Jotakin vaarin! naytetaan 404-viesti
echo "Virhe 404 - Sivua ei löydy!";
}
function MakeArray ($dir) {
global $pages;
$handle = OpenDir ($dir) or die ("Couldn't open $handle!");
while (FALSE !== ($file = ReadDir($handle))) {
if ($file != ".." AND $file != ".") {
if (is_dir($dir . $file)) {
MakeArray ($dir . $file . "/");
} else {
$pages[ereg_replace(".(.*)$", "", $file)] = $dir . $file;
}
}
}
CloseDir ($handle);
}
?>
Ewerything else works ok, but I want put in $pages array page tapahtumat&page=2. How to do it?
I mean that this addres works in index php:
www.mydomain.com/index.php?page=tapahtumat
This addres does not work:
www.mydomain.com/index.php?page=tapahtumat&page=2
What I have to do?
No comments posted yet
Your Answer:
Login to answer
195
47
Other forums
PHP Login
Hey!
I got this shopcart code online, am trying to modify it but am getting an error when i try a
login form can you find my error?
registrationform.php seems fine send data to registration.php
registration.php seems fine checks
Share admin accross websites
I'm using .net memberships and roles in one of my sites, but I need to be able to share logins and p
defining website tags
Hi,
What would be the best way to define tags for my site, such as website title, url etc.
Navigation include for all site directories
Hi,
I need a navigation include that can deal with directories at different levels on a site.
Port scanner problem
Hai
recently i developed one app through which u can check the opened and closed ports under an
login from external site
Hi my new experience begins, Now what i am trying to do is i make three pages, login.php logout.php
checkbox update
I am having a brain fart right now and i cant remember how to do this. if anyone could help that wou
compile php5 with DOM
Hi,
I can't manage to compile php 5.3.0 from source on Windows to include DOM,
in spite of
Simple Question
I know this is a simple question, that if I knew what it was technically called i could probably loo