Hey guys im really new to php and i had it all worked out untill this came along
it says this
Parse error: syntax error, unexpected T_STRING in /home/tattie/public_html/index.php on line 1
i really really dont know what to do and i would be so grateful if someone could tell me what is wrong
here is the code
<!--THIS INCLUDES HEADER.PHP--><? php get_header(); ?><!-- END -->
<div class="side"><?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Thanks Kubrick for this code ?>
<?php if (is_category()) { ?>
<h3><?php _e('Archive for '); echo single_cat_title(); ?></h3>
<?php } elseif (is_day()) { ?>
<h3><?php _e('Archive for '); the_time('F j, Y'); ?></h3>
<?php } elseif (is_month()) { ?>
<h3><?php _e('Archive for '); the_time('F, Y'); ?></h3>
<?php } elseif (is_year()) { ?>
<h2><?php _e('Archive for '); the_time('Y'); ?></h2>
<?php } elseif (is_author()) { ?>
<h3><?php _e('Author Archive'); ?></h3>
<?php } elseif (is_search()) { ?>
<h3><?php _e('Search Results'); ?></h3>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>
<!--TITLE TAG-->
<h1><?php the_title(); ?></h1>
<!--END-->
<!--TIME DATE CATEGORY WORDS-->
<h2><?php the_time('F jS, Y'); ?> by <?php the_author(); ?> <?php comments_popup_link(__('0 Comments'), __('1 Comment'), __('% Comments'), 'commentslink', __('sorry, Comments off for this post.')); ?> <BR>
Filed Under: <?php the_category(', ') ?>
</h2>
<!--END-->
<?php if (is_search()) { ?>
<?php the_excerpt() ?>
<?php } else { ?>
<?php the_content(__('Read more »')); ?>
<!--COMMENTS TAG-->
<!--END-->
<br /> <br />
<?php comments_template(); // Get wp-comments.php template ?>
<?php } ?>
<!--
<?php trackback_rdf(); ?>
-->
<?php endwhile; ?>
<?php posts_nav_link('', __(''), __('« Previous entries')); ?>
<?php posts_nav_link(' ', __(''), __('')); ?>
<?php posts_nav_link('', __('Next entries »'), __('')); ?>
<?php else : ?>
<h3><?php _e('Not Found'); ?></h3>
<p><?php _e('Sorry, but no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<!--THIS INCLUDES FOOTER.PHP-->
<?php get_footer(); ?><!-- END -->