Jump to content

simple page


artist19

Recommended Posts

Here is a rough php code I wrote (I'm not a programmer but guess the way). I'm not sure about the rest of it  --

 

<?php // correct anything?

$content = array(

 

    1 => array(

        $page_file => '/dir/welcome.php',

        $page_title => 'title page',

$page_sidebar => '/dir/path/sidebar.php'

    ),

   

2 => array(

$page_file => '/otherdir/otherpage.php',

$page_title => 'title page',

$page_sidebar => '/dir/about/sidebar.php'

// and so on.

    )

);

 

$id = (how to refer to numbers above in array? e.g. 1 or 2);

 

// modify or correct this one or...

$file = isset($content[$id]) ? $content[$id] : '/dir/undercontruct.php';

 

// or this another way? how to correct this below or above?

 

if((!isset($_GET["id"])) || (isset($_GET["id"]) && $_GET["id"] == "")) {

  $file = isset($content[$id])

  }

 

elseif(isset($_GET["id"]) && $_GET["id"] == $id;) {

$content[$id] : '/dir/to/otherpage.php';}

?>

 

---------------------------------- not modify code below. i want these the way they are. -------

 

In template page:

[..]

<head>

<title><?PHP echo $page_title; ?></title>

[..]

 

<div>

<?php include $_SERVER['DOCUMENT_ROOT'] . $page_file; ?>

</div>

 

 

Thanks much!

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.