Qbasicnews.com

Full Version: ssi? Is there another way?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Is there another way (other than SSI which the server I'm using has no support for) to include a webpage into another webpage?
frames or iframes, unless your server has php support...
I'm trying to include this site's newsfeed, so Iframe's don't work...

PHP I'm pretty sure Comcast has, they don't let us normal people use it.

Sad

I want a server for christmas...
why don't iframes work?

An iframe should be able to display and use everything a regular window can....
It works, but:

1) When I click a link in the IFRAME, it opens in the IFRAME and
2) The background of http://www.qbasicnews.com/newsfeed.php is white, with Times text. Doesn't fit. Wink
1) Can't you use "parent." or something?

2) So change the color of your iframe! Smile
Quote:1) Can't you use "parent." or something?

2) So change the color of your iframe! Smile

1) what the frick is "parent" O_o
2) How?
1) Erm, javascript link... sigh...
2) Javascript, again...................................

goto www.geocities.com/lehslatinclub/welcome.htm, and go to the omens page. The blue thingo... that's an iframe. Uh.... I made a multiple choice thingie with it... click ok at the very bottom....
parent:

When you create the link (<A HREF...>) you add the target element: TARGET="_top" exactly like that, underscore and everything. This will overlap your entire site, killing the iFrame.

If you use a frames page WITH iFrames, you'll have to name all of your frames and target only the one you want to overlap (which is good style anyway).

You could also use javascript in the target of the link (the HREF). In the HEAD, add:
<SCRIPT LANGUAGE="JavaScript"><!--
if (window != top) top.location.href = location.href
//</SCRIPT>

Also, an unorthodox method is using the LINK tag with any of its elements.

<LINK REL="Section" Title="News" TYPE="text/html" HREF="here.html">
Will add here.html to your page. It generally goes in the <HEAD> section of your document, so usefulness is limited (unless it can also be used in the BODY... of which I am unsure and doubtful).
Quote:2) The background of http://www.qbasicnews.com/newsfeed.php is white, with Times text. Doesn't fit. Wink

Gah... The output of newsfeed.php is

Code:
<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4664">New article about roguelike games</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4640">One Key Challenge poll is opened!</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4616">New GUI/OS Review at Sepent.com</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4591">Blind Productions Resurrected</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4586">PostNuke has been nuked at QB45.com!</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4572">New issue of QBXL!</a></li></ul>


<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4563">Qbasicnews.com Site and forums remain open</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4561">The one key challenge</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4553">VPlanet! Update</a></li></ul>

<ul><li><a href =" http://forum.qbasicnews.com/viewtopic.php?t=4538">One key challenge warning</a></li></ul>

Now, can you show me where's declared that the bg color is white and the font face is TNR?

:-?
Pages: 1 2 3