Could you help me with this script

Discussion in 'PHP' started by myboy26, Aug 26, 2008.

  1. #1
    I keep getting,

    syntax error, unexpected $end on line 48 when trying this script can someone take a look at and see what i did wrong?

    <?php get_header(); ?>

    <div id="content-wrap">

    <?php include 'top-nav.php'; ?>

    <div id="content">
    <?php if (have_posts()) : ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="post" id="post-<?php the_ID(); ?>">

    <h1><?php the_title(); ?></h1>

    <div class="entrytext">

    <?php the_content('More &raquo;>'); ?>
    </div>
    <div class="post-sub">
    <div style="float: left; width: 50%;">
    Posted by Biz: <?php the_category(', ') ?> <?php edit_post_link(' | Edit', '', ''); ?>
    </div>

    <div style="float: right; width: 50%; text-align: right;">
    <?php comments_rss_link('RSS'); ?>
    </div>

    <div style="clear: both;"><!-- --></div> </div>

    <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>


    </div>

    <?php edit_post_link('(Edit Page)', '<p>', '</p>'); ?>

    </div>

    <?php endwhile; endif; ?>



    </div>

    <!-- end content wrap -->

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>
     
    myboy26, Aug 26, 2008 IP
  2. EricBruggema

    EricBruggema Well-Known Member

    Messages:
    1,740
    Likes Received:
    28
    Best Answers:
    13
    Trophy Points:
    175
    #2
    Try removing line 8, it's almost equail to 9 but is missing some paramters!
     
    EricBruggema, Aug 26, 2008 IP
  3. myboy26

    myboy26 Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I don't understand are you counting the lines that are skipped?
     
    myboy26, Aug 26, 2008 IP
  4. myboy26

    myboy26 Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thx that worked!
     
    myboy26, Aug 26, 2008 IP
  5. EricBruggema

    EricBruggema Well-Known Member

    Messages:
    1,740
    Likes Received:
    28
    Best Answers:
    13
    Trophy Points:
    175
    #5
    Well done! have fun with it! :)
     
    EricBruggema, Aug 27, 2008 IP