Sorry, this is my first day at a new job... my boss wants me to figure out a way (he suggested perhaps using javascript, or some DHTML method) to load a php page separately from the page. For instance, we cover a lot of sporting events, he would like the main page to load, with something like a box in the middle with recent scores or articles. He was hoping to load the php page separately because the dynamic content is only a small part of our main page.
--John G
2 methods to use :
a. Use javascript Popup window function window.open(pageURL,"WindoName"). Optionally you can set width/height/and position parameters.
b. <a href="your_phpfile.php" target="_blank"> Link name </a>
for IE 4+ and NS 6+ use an iframe:
<iframe src="scores.php"></iframe>
For NS 4 you will have to use:
<ilayer src="scores.php"></ilayer>
You should be able to figure the rest out.
thank you very much for you help
--john
p.s. openSource people are the best kind of people