Re: How to Hide browser status bar Message from client [message #170129 is a reply to message #170127] |
Mon, 11 October 2010 13:07 |
Geoff Berrow
Messages: 16 Registered: September 2010
Karma:
|
Junior Member |
|
|
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.
--
Geoff Berrow (Put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs www.4theweb.co.uk/rfdmaker
|
|
|