Skip to main content
Home Forums MacNN Disabling right click? — #17
Post #17 by Peder Rice
Source ForumMacNN
CategoryTroubleshooting
Post DateThu, 21 Apr 2005 - 00:57
Original URLhttps://web.archive.org/web/20050518090220/https://forums.macnn.com/showthread.php?t=249871
Post
I think it'd be quite fun to have a dynamic .js file that document.writes your entire pag. For instance,

index.php
--------
code:


<script language="javascript" src="annoyingPageCreator.js?page=#PAGEID#"></script>




annoyingPageCreator.js
--------
PHP Code:
var line;

<?
php

/*
Not exactly sure if this is what we'd want, but who really cares?
*/
if($_SERVER['HTTP_REFERER'] == "index.php") {
    
    
$pageSource = getSource($page);
    
    
$pageSource = addslashes($pageSource);
    
    print(
"line = '" . $pageSource . "';");
    
}

?>
document.write(line);
mp.ls