1
vote
3answers
87 views

Why Iframe dosen't work for yahoo.com

I find this doesn't work: <iframe src="http://www.yahoo.com"> </iframe> I have read this question, but I don't understand what they mean by add: <?php header('X-Frame-Options: ...
0
votes
2answers
266 views

Meta Refresh with a frame target

I have a very basic frame layout: index.html <frameset rows="80,*" frameborder="1" border="5" framespacing="0"> <frame name="topNav" src="top_nav.html"> <frameset cols="220,*" ...
0
votes
2answers
48 views

Compress images on load that are within frames

We have developed this site: http://www.aloha-connect.com/ Our issue is that within this page, we have many frames.. in some cases, frame within a frame. Our issue is, that on connections with low ...
0
votes
3answers
121 views

How can I frame break from this example?

A random website has decided to load one of my urls via the following code... <img src="http://mysite.com/" width="1" height="1" /> I tried adding a javascript framebreaker to check and break ...
0
votes
0answers
91 views

Saving contents of a remote html frame (in PHP)

I have quite a specific problem, which I've researched but as it's quite specific and strange(?) I'm not having much luck. Also I suspect it'll have some lovely javascript/DOM type work which I'm ...
0
votes
0answers
63 views

SCORM encoding display issue

Im losing it with this one... All my content is encoded and served by Apache in UTF-8. Now, I got some new SCORM lessons, but encoded with ISO-8859-1, so when trying to display it it shows errors in ...
2
votes
3answers
223 views

How can I refresh a page/frame when a server not found error page is displayed?

I've searched but haven't been able to find any discussion on this topic: I have a private webpage (implemented in php) that scrolls through a few different php pages displaying info then refreshing ...
0
votes
0answers
109 views

HTML Pull Down Menu that calls a Frameset convert to PHP

I am trying to port hard coded html files to php and as a "non programer" its realy driving me nuts. Simply said, this creates a pull down list at the top of the site were you can choose an option, ...
0
votes
1answer
66 views

Activate a button from a hidden frame [closed]

I have a question about java buttons. A friend wants to use a shopping platfrorm but the problem with it is that you can't add any functionality because it' a closed platform stored on the platform ...
0
votes
3answers
3k views

create frame like structure in php/html?

I need to create a page having two, frame like structure. On left I always want to show a small form with around 10 entries which after clicking the submit button perform some processing and shows ...
-2
votes
1answer
329 views

Scripts to break out of frames and proxies [closed]

I need Javascript or PHP code to break out of frames and proxies ? Can anyone help ? I have tried this Javascript code..but it only work with the normal frames..not the proxies frames <script ...
2
votes
4answers
82 views

Permission to see certain pages

I am creating a website where there are two user intefaces. ONe for sellers and one for buyers. Currently, I am storing these files under a folder (e.g: /interfaces/frame.php) So for both cases the ...
0
votes
2answers
478 views

Passing data between frames with Javascript

I've setup a simple example at http://ryanmalin.co.uk/frames/ If you press "add" it will paste the form data from the left frame into the right frame. When I change the right frames URL to that of ...
1
vote
3answers
995 views

cURL and scraping websites that look to detect Frames support

I'm trying to pull information from Natwest's Online Banking service using PHP / cURL - the idea being that if it's actually possible to do, then I could maybe make a more mobile-friendly site to ...
0
votes
2answers
4k views

Frames with PHP

Can I use HTML Frames with PHP? I presumed I can do this by.. <?php session_start(); require("auth.php"); require("do_html_header.php"); if($_SESSION['SESS_admin'] == 0) require("do_menu.php"); ...
0
votes
1answer
157 views

How to take information on a left frame and update a text-field within the right frame?

I need some help with frames. So basically, here's my dilemma ... I have created an index page that is broken down into 2 frames. The left frame, basically has a tree of a directory that a user can ...
0
votes
2answers
1k views

PHP Logout Script with 4 frames in frameset

I have a study logout.php file which works fantastically, the issue I am faced with however is putting the script into a new 'intranet style' administrative site which uses 4 frames within a frameset ...
1
vote
5answers
421 views

Making a site WITHOUT frames

I want to make my homepage, without frames, should i just split up my design on index.php so it is header.php/footer.php, and then just include them on every page?
1
vote
4answers
1k views

Why is IE7 rejecting session cookies from a page in a frame?

I am building a website that is loaded into a frameset by other sites (where the domain names are different for the parent site). This works fine in all browsers (including IE6), except for IE7. It ...