Search found 6 matches

by Starblaster1234
Fri Nov 27, 2009 10:28 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

Re: A selective version of HTML's frameset

ooo...fancy new problem. You're allowed to see it now haha. Main page http://silenteternity.org Target page http://silenteternity.page.tl/ My links won't work since they're being displayed on the page and not just called by the frameset. Any ideas? I have one but I want to hear what you have to say ...
by Starblaster1234
Fri Nov 27, 2009 10:20 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

Re: A selective version of HTML's frameset

Posting it in a second...just finishing up the code for it EDIT: Read 'em and weep <?php function strposnth($haystack, $needle, $nth=1, $insenstive=0) {     //if its case insenstive, convert strings into lower case     if ($insenstive) {         $haystack=strtolower($haystack);         $needle=strto...
by Starblaster1234
Fri Nov 27, 2009 9:59 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

Re: A selective version of HTML's frameset

heh, nevermind...I figured it out.

I parsed though using strpos and this function this guy wrote strposnth (found the nth string position), then I just displayed the code from the next </center> point on to the end :D
by Starblaster1234
Fri Nov 27, 2009 9:53 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

Re: A selective version of HTML's frameset

Yeah...I believe they are using an iframe (whatever that is) actually...

I navigated through firebug and deleted it, but I need the php to do that when it calls the page.
by Starblaster1234
Fri Nov 27, 2009 9:43 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

Re: A selective version of HTML's frameset

Well no, the thing is that we are already paying for a host, but they don't have such a pretty CMS, and we'd like to use it. I'm not trying to steal it or find the cheap way out. Just trying to view it through a different site without the advertisements. EDIT: It doesn't violate the ToS either...so ...
by Starblaster1234
Fri Nov 27, 2009 9:02 pm
Forum: PHP - Code
Topic: A selective version of HTML's frameset
Replies: 11
Views: 476

A selective version of HTML's frameset

As you probably know, with HTML you can write: <frameset cols="100%"><frame src="{URL}"></frameset> to essentially copy the display of the target {URL} to display the same on your site, no matter what buttons are clicked unless they lead to a new page. So herein lies the problem....