if and else statement not working on the iframe php page

To test for a post id use get_the_ID():

if ( 947 == get_the_ID() )
{
    // do something
}

If you need it outside of a loop you can access the post object’s ID member:

if ( 947 == $post->ID )
{
    // do something
}