RSS Forums RSS
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 1615 | Replies: 3
Reply
Join Date: Jun 2005
Posts: 20
Reputation: nike123 is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 0
nike123 nike123 is offline Offline
Newbie Poster

page layout help!!!!

  #1  
Feb 7th, 2006
Please please please i need a bit of help, with setting my php site layouts. I have decided to use tables instead of page frames for various reasons.

I am now however having some problems with getting my page to display as I wish, so if anyone could please give advice.

O.K here's the index page (This page consist of the tables layout >> header, left panel, middle section, right panel, and the footer).

This is the coding of the middle section, which automatically calls the homepage.php and displays it.

echo '<td bgcolor="#ffffff">';

$call= changelocation('homepage');

function changelocation($location)
{
switch ($location)
{
case 'homepage': include('homepage.php');
break;
case 'category': include ('category.php');
break;
}

The first part of this works fine. but when i change the value of $location from another page as shown below:

$position = 'category';
changelocation($position);

it does displays the category.php but it displays the result outside the table.

I am really confused. I have tried diffrent approaches and just can't get it to work.

is there any suggestion or alternative way of working with pages layout?.

what i am trying to do is get the category.php to display and get rid of homepage.php showing. but instaed both pages are still displaying. (homepage.php in the middle section and category.php outside the table, after the page footer)..
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Sep 2005
Location: Netherlands
Posts: 9
Reputation: olaf is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
olaf olaf is offline Offline
Newbie Poster

Re: page layout help!!!!

  #2  
Feb 7th, 2006
I think you'r are including a complete webpage. Remember it's not valid to have several html, head and body elements.

just check the source of you category.php file

greetz Olaf
Reply With Quote  
Join Date: Jun 2005
Posts: 20
Reputation: nike123 is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 0
nike123 nike123 is offline Offline
Newbie Poster

Re: page layout help!!!!

  #3  
Feb 7th, 2006
no there's no head or footer or body in my category page. plus this is a . php page.
i just need some advice on changing the display of the middle section from one php page to a next. is there aslternative way of doing this?
Reply With Quote  
Join Date: Jul 2004
Posts: 227
Reputation: PoA is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 6
PoA PoA is offline Offline
Posting Whiz in Training

Re: page layout help!!!!

  #4  
Feb 11th, 2006
[PHP]$call= changelocation('homepage');

function changelocation()
{
switch ($_REQUEST['location'])
{
case 'homepage': include('homepage.php');
break;
case 'category': include ('category.php');
break;
}[/PHP]

Looks like you don't have register_globals enabled. So you should use $_GET or $_REQUEST. Try the code above. Hope it solves your problem.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

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

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 2:17 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC