artist19 Posted February 27, 2010 Share Posted February 27, 2010 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 More sharing options...
trq Posted February 27, 2010 Share Posted February 27, 2010 Have you got a question? Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1018850 Share on other sites More sharing options...
artist19 Posted February 27, 2010 Author Share Posted February 27, 2010 Correct anything? There are questions in the code after // ... and how to code $id... Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019036 Share on other sites More sharing options...
teamatomic Posted February 27, 2010 Share Posted February 27, 2010 Does it work as you expect it to? HTH Teamatomic Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019040 Share on other sites More sharing options...
artist19 Posted February 27, 2010 Author Share Posted February 27, 2010 Of course not. I was merely writing a concept and somebody can help rewrite or modify it. As I said, I'm not a programmer. If nobody wants to help, fine. I'm looking somewhere else. Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019042 Share on other sites More sharing options...
trq Posted February 28, 2010 Share Posted February 28, 2010 I think you misunderstand the concept of a help forum. Were not here to write code for people. Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019247 Share on other sites More sharing options...
artist19 Posted February 28, 2010 Author Share Posted February 28, 2010 I've received help from another community/forum where I usually get help. Thanks anyway. Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019250 Share on other sites More sharing options...
trq Posted February 28, 2010 Share Posted February 28, 2010 Suckers. Link to comment https://forums.phpfreaks.com/topic/193539-simple-page/#findComment-1019251 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.