error in my php

Hi
I am making a new sidebar for my wrodpress site and have made a file. When I uplpad it, the site comes up with an error message and I cannot tell what it is.
Please can someone look at it for me?
Many thanks
Sarah
[php]

<?php register_sidebar( array( 'name' => __( 'Third Front Page Widget Area', 'twentytwelve-child' ), 'id' => 'sidebar-front-third', 'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'twentytwelve-child' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); ?>

[/php]

Try this…

[php]<?php

register_sidebar( array(
‘name’ => ‘Third Front Page Widget Area’, ‘twentytwelve-child’ ,
‘id’ => ‘sidebar-front-third’,
‘description’ => ‘Appears when using the optional Front Page template with a page set as Static Front Page’, ‘twentytwelve-child’ ,
‘before_widget’ => ‘

’,
‘before_title’ => ‘

’,
‘after_title’ => ‘

’,
) );[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service