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
https://forums.phpfreaks.com/topic/193539-simple-page/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.