[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

Dynamically change page title and meta tags when using include($_GET["page"].".html");

Asked by AndrewShanklin in PHP Scripting Language, PHP Frameworks

Hi,

I am in need of some help with my site.

It is currently setup so that you access the url e.g. www.yoursite.com and this using an index.php file redirects to:

www.yoursite.com/site.php?page=Home

The Site.php file includes all the usual meta data and css at the top and then at around line 52 has the code:

<?php
$allowed = array("Home","Contact","Sales");
if(in_array($_GET["page"],$allowed)) {
 include("Header.html");
 include($_GET["page"].".html");
} else {
 die("Error Page Not On Approved List!");}
?>

and so if you access: www.yoursite.com/site.php?page=Contact the contact page will be loaded.

The problem I have is that I need to have custom title and meta details based on whatever page is loaded.

Currently only the title and meta details from the Site.php are shown throughout the site.

I have looked into all of the usual php of:

<title><?php echo($title);?></title>
and in each page including:

<?php
$title = "Page title";
?>

But the issue is that because the pages are called after the title tag the "$title = "Page title";" code from each page is never referenced in the title .

Does anyone have any ideas and if so can they provide the code that will still allow me to use the "/site.php?page=" format but have dynamic title and meta data based on the page.

Many thanks in advance.

Andy.
 
Related Solutions
Keywords: Dynamically change page title and meta…
 
Loading Advertisement...
 
[+][-]10/22/09 05:03 AM, ID: 25633067Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: PHP Scripting Language, PHP Frameworks
Sign Up Now!
Solution Provided By: g105b
Participating Experts: 2
Solution Grade: A
 
[+][-]10/22/09 05:40 AM, ID: 25633383Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/22/09 06:18 AM, ID: 25633772Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625