Current location: Hot Scripts Forums » Programming Languages » PHP » Dynamic Include


Dynamic Include

Reply
  #1 (permalink)  
Old 06-10-09, 11:51 PM
divGirl divGirl is offline
Newbie Coder
 
Join Date: Jun 2009
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Dynamic Include

I want to dynamically change the pages that can be viewed in the body of my page without constantly using an if/else statement by posting the name of the page and echoing the href - is there an easier way to do this??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 06-11-09, 06:03 AM
Thyrosis's Avatar
Thyrosis Thyrosis is offline
Newbie Coder
 
Join Date: Dec 2008
Location: South UK
Posts: 66
Thanks: 2
Thanked 0 Times in 0 Posts
The only real alternative to an if/else statement I can think of is a switch.
PHP Code:

switch ($i) {
    case 
1:
        echo 
"www.page1.com";
    case 
2:
        echo 
"www.page2.com";
    case 
3:
        echo 
"www.page3.com";

Or is this not what you mean?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 06-11-09, 07:27 AM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,516
Thanks: 20
Thanked 109 Times in 106 Posts
PHP Code:

$sPage=$_GET['sPage'];

if (
is_file($sPage))
  include 
$sPage
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Your HelP! Loading Multiple External Text into Multiple Dynamic Text Fields Flash_Boi Flash & ActionScript 2 03-30-06 04:27 PM
include a dynamic url? ToeBee PHP 4 09-22-05 06:15 AM
2 flash websites for sale metamorph General Advertisements 5 01-09-05 11:03 PM
PHP help... Orchidsdance PHP 8 09-25-04 08:58 PM
dynamic include tutorial nick_a PHP 1 10-28-03 01:30 AM


All times are GMT -5. The time now is 06:16 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.