954,202 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

index.php?p="Whatever"

Does anyone know where I can learn to base my entire web site off of one index page? I can't seem to find anything.

imzac
Newbie Poster
3 posts since Aug 2004
Reputation Points: 10
Solved Threads: 0
 

It's using function. You may take a look at http://www.phpfreaks.com/tutorials/1/0.php

PoA
Posting Whiz in Training
237 posts since Jul 2004
Reputation Points: 26
Solved Threads: 9
 

I know exactly what you want and I'm currently working on a tutorial to further explain in detail what one needs to understand/do to create a single file used to load other files, or a page to load other pages for a website.

It should be ready by tomorrow night. I'll be covering the query string, superglobals, dynamic file including, and basic security, all of which are involved and required when dealing with a dynamic page loader.

It's my first tutorial so I hope it works out well =]

kenleycapps
Newbie Poster
9 posts since Aug 2004
Reputation Points: 10
Solved Threads: 0
 

That would be great. I REALLY need to see that. It would help a lot.

imzac
Newbie Poster
3 posts since Aug 2004
Reputation Points: 10
Solved Threads: 0
 

sorry imzac. the tutorial will have to wait. the final copy is 25% complete but I just ran into some problems (real life problems =\ ) so I will attempt to have it ready by tomorrow night. Keep checking back; I'll be providing plenty of tutorials (depending on how my first one goes) in the next few months. Sorry again!

kenleycapps
Newbie Poster
9 posts since Aug 2004
Reputation Points: 10
Solved Threads: 0
 

Well, does anyone else know anything that would help me?

imzac
Newbie Poster
3 posts since Aug 2004
Reputation Points: 10
Solved Threads: 0
 

I'm not really familiar with PHP, but I imagine the code would look something like this:

<!-- All your header stuff -->

<?php
if ($content){
  require("$content");
} else {
  require('defaultcontent'); // replace defaultcontent with whatever file.
}
?>

<!-- All your footer stuff -->


The above could be used for the index page. The following would be used for the links.

<a "href=www.domain.com/index.php?content=aboutme.con">About Me.</a>


Anyone else have any feedback on this. I just came up with this on the fly from the little I do know about PHP. I didn't test this.

Alcides. :rolleyes:

Alcides
Junior Poster in Training
54 posts since Jul 2004
Reputation Points: 11
Solved Threads: 0
 

Anyone else have any feedback on this. I just came up with this on the fly from the little I do know about PHP. I didn't test this.

Alcides. :rolleyes:

That's about right. I mean, obviously, it can get pretty complicated, as in my two software projects (sorry, only one's open source, and the open source one is incomplete at that). http://www.daku.info/products/site_file_lite.html (just a beta)
http://www.minot.k12.nd.us/buildings

You may not notice it, but the second page is still justing using a base index.php file and employs page IDs beyond that point. However, it also uses error pages to redirect to index.php using shortcuts for each page. It's an elaborate, database-driven setup, but it allows us a great deal of flexibility, such as web-based administration.

rice_web
Newbie Poster
11 posts since Jul 2004
Reputation Points: 10
Solved Threads: 1
 

[php]require("$content");[/php]
This'll work, but it's a waste of the script interpreter's time:

[php]require($content);[/php]
This is faster. (Without the double quotes this time - the double quotes tell the interpreter that there may be variables embedded in the string, and should evaulate those variables, so it goes searching for them. This takes marginally more time than knowing that they are there already. Obviously, it won't make much difference, but its good to know. )

Roberdin
Supreme Evil Overlord
Team Colleague
282 posts since Feb 2003
Reputation Points: 63
Solved Threads: 6
 

Good point, Roberdin.

Alcides.

Alcides
Junior Poster in Training
54 posts since Jul 2004
Reputation Points: 11
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You