this is the code from my index page of the site .. non blog: and i want to add a post to it from my blog. both are on the same server and in the root folder.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Temple Israel Ottawa</title>
</head>
<body class="oneColFixCtrHdr">
<div id="blogcontent">
<?php
require('./new_site/wppress/wordpress/wp-blog-header.php');
?>
<!-- Get the last 3 posts.-->
<?php
require('./new_site/wppress/wordpress/wp-blog-header.php');
?>
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?>
<?php endwhile;?>
</div>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<link href="main.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="png_fix.css" />
<![endif]-->
<!--[if lt IE 7.]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->
`
what am i doing wrong? i've saved this index page as a php file and nothing shows. i think it's a Div thing but not sure. a co worker coded the index page and i worked on wp. we are both volunteers for a church site. so we aren't making any money off of this site ..just experience and hard work; as you can see.
if you can help it'd be appreciated. if this can't be done please let me/us know. thank you.