Reply
Old 08-06-2004, 12:10 PM Php Newby
steveharro's Avatar
Extreme Talker

Posts: 172
Trades: 0
I know this is simple to do but I can't seem to work it out. I used include() to display my left nav.That's ok but where the left nav is stored leftnav.php it's set to width="100%" and I wont to nest it in another table set to Pixal width just to keep it tidy for future updates. So what my question is how do I just include the liquid table only and not everthing in the file. This is what I have so far
Code:
<div id="tab">
  <?php include('leftnav.php') ?>
</div>
I tried ID the table but it still includes the other table as well.

Thanks for any help
Regards Steveharro
Best Download Sites
steveharro is offline
Reply With Quote
View Public Profile
 
 
When You Register, These Ads Go Away!
Old 08-06-2004, 12:17 PM
webwoRRks's Avatar
Ultra Talker

Posts: 426
Location: I hope so
Trades: 0
I can't say I honestly follow;
you have 2 tables in the leftnav.php, and you only want to display 1? if so, maybe you could do this....

PHP Code:
<?php
// leftnav.php
$table1 "<table>....</table>";
$table2 "<table>...</table>";
if(
$show_table==1) { echo $table1; }
else if(
$show_table==2) { echo $table2; }
?>
The file where you show the table...

PHP Code:
<div>
<?php
$show_table 
1;
include(
'leftnav.php');
?>
</div>
Does that help at all?

Last edited by webwoRRks; 08-06-2004 at 12:19 PM.. Reason: Funny confusing stuff
webwoRRks is offline
Reply With Quote
View Public Profile Visit webwoRRks's homepage!
 
Old 08-06-2004, 12:29 PM
steveharro's Avatar
Extreme Talker

Posts: 172
Trades: 0
Thanks alot for that I'll give it a go. The other table is just to hold the nav in place so it dosn't spread across the page.There will be other people updating and I won't to keep it tidy but wont the included file still width="100%" so it will resize in any res.

Regards Steveharro
Best Download Sites
steveharro is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Php Newby
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 



Page generated in 0.13163 seconds with 13 queries