I am learning PHP, please help me:
I am getting this error:
Parse error: syntax error, unexpected T_STRING in C:\xampp\htdocs\wordpress-3.2.1\wp-content\themes\hoctudau1\index.php on line 25
<?php
/**
* the main template file
*
* This is the most generic template file in a Wordfress theme
* and one of the two required files for a theme(the other being style.css)
* It is used to dislay a lage when nothing more specific matches a query.
* E.g .., it puts together the home page when no home.php file exitsts.
* Learn more: http:// codex.wordpress.org/template_hierarchy
*
* @package Wordpress
* @Subpackage hoctudau
* @since Nguyen Dinh Diem 1.0
*/
?>
<?php get_header(); ?>
<div id="sidebar">
<?php get_sidebars(); ?>
</div>
<div id="content">
<?php while ( have_posts() ): the posts() ?>
<h2> <?php the_title();?></h2>
<?php the_content();?>
<?php endwhile ?>
</div>
<?php get_footer(); ?>
Thankyou!