Results 1 to 10 of 11
Threaded View
-
9th Dec 2011, 04:03 PM #4Respected MemberWebsite's:
DL4Everything.com Soft2050.inTry this:
PHP Code:<form method="GET" action="enteryoururl.php">
Enter url: <input type="text" name="link" />
<input type="submit" value="Submit" />
</form>
<?php
if (isset($_GET["link"])) {
$url= $_GET["link"];
echo '<object id="flashplayer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="400">
<param name="movie" value="player.swf" />
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="FlashVars" value="plugins=plugins/proxy.swf&proxy.link=$url" />
<embed name="flashplayer" src="player.swf" FlashVars="plugins=plugins/proxy.swf&proxy.link=' . $url . '" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="600" height="400" />
</object>';
}
?>
PHP Code:<form method="POST" action="enteryoururl.php">
Enter url: <input type="text" name="link" />
<input type="submit" value="Submit" name="Submit" />
</form>
<?php
if (isset($_POST["link"]) and isset($_POST["Submit"])) {
$url= $_POST["link"];
echo '<object id="flashplayer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="400">
<param name="movie" value="player.swf" />
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="FlashVars" value="plugins=plugins/proxy.swf&proxy.link=$url" />
<embed name="flashplayer" src="player.swf" FlashVars="plugins=plugins/proxy.swf&proxy.link=' . $url . '" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="600" height="400" />
</object>';
}
?>
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
themaCreator - create posts from...
Version 3.57 released. Open older version (or...