Re: How to Hide browser status bar Message from client [message #170130 is a reply to message #170129] |
Mon, 11 October 2010 13:25 |
Erwin Moller
Messages: 228 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 10/11/2010 3:07 PM, Geoff Berrow wrote:
> On Mon, 11 Oct 2010 05:07:34 -0700 (PDT), DG<cool(dot)dipak83(at)gmail(dot)com>
> wrote:
>
>> sry,
>> i am not able run the page properly when i include
>> file_get_contents() code in src of iframe.
>> It is showing ' " function CONTENT " height="500px;" width="900px;">
>> ' like this output,please can u suggest any other approach....bcoz i
>> am unable to run the page doing so...
>
> Normally, people who post here have some knowledge of PHP. I suggest
> you at least learn the rudiments before asking questions, this group
> will help you write code, but won't normally write it for you.
>
> Anyway,
>
> Create a text file including just the following:
>
>
> <?php
> $iframe = file_get_contents('http://www.testdomain.com/index.php');
> echo $iframe;
> ?>
>
> Save that file as iframe.php on http://www.domain.com such that your
> iframe is called with
>
> <html>
> <head>
> </head>
> <body>
> <iframe src="http://www.domain.com/iframe.php" height="500px;"
> width="900px;"></iframe>
> </body>
> </html>
>
> Obviously replace domain and testdomain with actual domains.
You are a heck of a patient guy, Geoff. ;-)
Erwin Moller
--
"There are two ways of constructing a software design: One way is to
make it so simple that there are obviously no deficiencies, and the
other way is to make it so complicated that there are no obvious
deficiencies. The first method is far more difficult."
-- C.A.R. Hoare
|
|
|