Hello, I am probably not approaching this correctly but let me try to explain what I am trying to do:
barchart.com has cobranded content, they serve asp pages with a width of 650. They recommend using frames due to the asp pages being interactive.
I am using a php cms (dixit.net) which gives me total control over the template of each page. I was just going to make a special template using the php include function and assign it to the new page.
But here is where it gets difficult. The asp pages are interactive so if I dont use frames, clicking a link in the asp page takes over the browser window, which I dont want. So, I tried to create a simple frameset and call in from the template using:
<?php include ("content_frame.html"); ?>
By doing the above, I didn't get anything to show up. So, is this even possible? and/or is there a more elegant way of doing this in php?
Any help would be appreciated.