loading page in body section only...

A

Anonymous

Guest
when i search the query in body section it should be load there it self and not in the new tab...
is there any solution, so that it loads there itself..
below is my code..

i have also attched the screen shot of page...

Code:
<html>
<style type="text/css">
#header
{
position:absolute;
width:1330px;
height:100px;
background:blue;
left:10px;
}

#leftcol
{
	width:200px;
    height:850px;
    position:absolute;
    top:150px;
    left:10px;
	background:black;
}

#content
{
position:absolute;
left:300px;
top:180px;
width:1000px;
height:1000px;

}

</style>
<body>

    <div id="header" name="header"><?php include('ajax_live_search.html');?>  </div>
           
     <div id="leftcol" name="leftcol"><?php include('frames_content.php');?></div>

    <div id="content" name="content"><?php include('pdb_reading11.php');?> </div>

</body>
</html>
 

Attachments

  • Untitled.png
    Untitled.png
    26 KB · Views: 3,044
Back
Top