any alternative or fix to include statements
Posted by: tehno (---.dsl.pltn13.pacbell.net)
Date: July 18, 2007 07:49AM

i need a fix or an alternative to include statements, can anyone help me?
i really need help

<?php
if($page == ""winking smiley
{
include "content/home.php";
}else{
include "content/$page.php";
}

?>

Options: ReplyQuote
Re: any alternative or fix to include statements
Posted by: eggz (---.sme.bredbandsbolaget.se)
Date: July 18, 2007 04:37PM

What happens when you load the page?

just try

<?php include 'http://www.google.com' ?>

U get a blank page?



Post Edited (07-19-07 11:08)

Options: ReplyQuote
Re: any alternative or fix to include statements
Posted by: tehno (---.llnl.gov)
Date: July 18, 2007 06:03PM

the first include statement work:
include "content/home.php"

but then when you click a link that should change it in previous versions of PHP it doesnt
the page just stays on the original home.php

Options: ReplyQuote
Re: any alternative or fix to include statements
Posted by: eggz (---.sme.bredbandsbolaget.se)
Date: July 19, 2007 10:49AM

Ok, now I see. You need to do this:

<?php
if($page == ""winking smiley
{
include 'content/home.php';
}else{
include 'content/' . $page . '.php';
}

?>

I think that will work.

Options: ReplyQuote
Re: any alternative or fix to include statements
Posted by: CyberSpatium (71.237.217.---)
Date: July 22, 2007 03:49PM

change to:



<?php
if($page == ""winking smiley
{
include "content/home.php";
}else{
include "content/" . $page . ".php";
}
?>



CyberSpatium
----------------------
WAMP English Forum Admin

Need help? Check out my WAMP User Manual/Guide here!


Cellular Phone Deals - The Best on the Net! - FREE PHONES! Take your pick from our featured cellular phone deals by Cingular, Verizon, T-Mobile, Sprint PCS, Nextel, and more! Most of our cellular phone offers include a FREE cellular phone with FREE shipping!


Web Development for Newbie's Blog - Check out my new blog. It is for web developers, and especially tailored for the web development newbie. If you are not fluent in “geek speak”, then this incredible resource is just you. And even if you are a web development pro, this is a great resource to check out some of the latest web development tips, news, tutorials, codes and more.


Clarify Loans
Mortgage and Home Loan Advice


LaxGo Web Directory
Powerful human edited web directory of quality, spam-free sites organized via a comprehensive category structure.

Options: ReplyQuote
Re: any alternative or fix to include statements
Posted by: eggz (---.sme.bredbandsbolaget.se)
Date: July 23, 2007 03:22PM

Well, thats what I said 3 days ago in the post just above...

Options: ReplyQuote


Sorry, only registered users may post in this forum.