Random MIDI ! | <script>var nummidi = 5day = new Date()seed = day.getTime()ran = parseInt(((seed - (parseInt(seed/1000,10) * 1000))/10)/100*nummidi + 1,10)if (ran == (1)) midi=("123.mid") if (ran == (2))midi=("12.mid") if (ran == (3))midi=("YOUR.mid") if (ran == (4))midi=("YOUR.mid") if (ran == (5)) midi=("YOUR.mid") document.write('<EMBED SRC= "' + midi + '" Autostart=true hidden=true loop=true>')document.write('<BGSOUND SRC= "' + midi + '" Autostart=true hidden=true loop=true>')</script> |
Web Radio ! | <object id="Player" height="49" width="159" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject"> <param name="Filename" value="http://www.kvegas.com/mediaplayer/stream.asx"> <param name="ShowControls" value="true"> <param name="ShowStatusBar" value="true"> <param name="Autostart" value="true"> <param name="ShowPositionControls" value="False"> <param name="ShowTracker" value="False"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="http://www.kvegas.com/mediaplayer/stream.asx" name="Player" width="120" height="50" autostart="false" showcontrols showstatusbar showdisplay> </embed> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" filename="http://www.radio-now.co.uk/l/capitalfmlo.asx" src="showcontrols=%221%2522" showdisplay="0" showstatusbar="1" width="120" height="50" align="middle"> </embed> </object> |
Scrolling Affiliates ! | <marquee direction="up" width="159" height="100" scrollamount="2" scrolldelay="100" _onmouseover="this.stop()" _onmouseout="this.start()"><br> <center><br> <br> <a href="http://www.topsitelists.com/topsites.cgi?ID=41&user=yah00b00ts&area=world"> </a><a href="http://www.yterror.com/" target="_blank"> <img alt="Y! Terror" border="0" height="33" src="yterror_88x33.gif" width="88"></a> <a href="http://s0nic.tk" target="_blank"> <img border="0" src="yoursitehere.gif" alt="Sonics Heaven!" width="88" height="31"></a><br> <br> </center></marquee> |
Pop up Message ! | <script language="JavaScript">alert("TEXT HERE") </script> |
Yahoo Online Status ! | <a href="http://edit.yahoo.com/config/send_webmesg?.target=YAHOOID&.src=pg"><img border=0 src="http://opi.yahoo.com/online?u=YAHOOID&m=g&t=1"></a> |
Date of today ! | <font face="arial"><b><script language="JavaScript1.2"> <!-- Begin var months=new Array(13); months[1]="January"; months[2]="February"; months[3]="March"; months[4]="April"; months[5]="May"; months[6]="June"; months[7]="July"; months[8]="August"; months[9]="September"; months[10]="October"; months[11]="November"; months[12]="December"; var time=new Date(); var lmonth=months[time.getMonth() + 1]; var date=time.getDate(); var year=time.getYear(); if (year < 2000) year = year + 1900; document.write(lmonth + " "); document.write(date + ", " + year); // End --> </script> </b></font> |
Force Download | <?php $filename = $_GET['file']; // required for IE, otherwise Content-disposition is ignored if(ini_get('zlib.output_compression')) ini_set('zlib.output_compression', 'Off'); // addition by Jorg Weske $file_extension = strtolower(substr(strrchr($filename,"."),1)); if( $filename == "" ) { echo "<html><title>eLouai's Download Script</title><body>ERROR: download file NOT SPECIFIED. USE force-download.php?file=filepath</body></html>"; exit; } elseif ( ! file_exists( $filename ) ) { echo "<html><title>eLouai's Download Script</title><body>ERROR: File not found. USE force-download.php?file=filepath</body></html>"; exit; }; switch( $file_extension ) { case "pdf": $ctype="application/pdf"; break; case "exe": $ctype="application/octet-stream"; break; case "zip": $ctype="application/zip"; break; case "doc": $ctype="application/msword"; break; case "xls": $ctype="application/vnd.ms-excel"; break; case "ppt": $ctype="application/vnd.ms-powerpoint"; break; case "gif": $ctype="image/gif"; break; case "png": $ctype="image/png"; break; case "jpeg": case "jpg": $ctype="image/jpg"; break; default: $ctype="application/force-download"; } header("Pragma: public"); // required header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); // required for certain browsers header("Content-Type: $ctype"); // change, added quotes to allow spaces in filenames, by Rajkumar Singh header("Content-Disposition: attachment; filename=\"".basename($filename)."\";" ); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".filesize($filename)); readfile("$filename"); exit(); ?> |
Play MP3 files in web background ! | <embed src="music.mp3" autostart="TRUE" hidden="TRUE" loop="TRUE"> <noembed><bgsound src="music.mp3" loop="INFINITE"></noembed> |
Calculator ! | <FORM NAME="Calc"> <TABLE width="201" BORDER=1> <TR> <TD align="center" width="191"> <INPUT TYPE="text" NAME="Input" Size="16"> <br> </TD> </TR> <TR> <TD align="center" width="191"> <p align="left"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="one" VALUE=" 1 " OnClick="Calc.Input.value += '1'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="two" VALUE=" 2 " OnCLick="Calc.Input.value += '2'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="three" VALUE=" 3 " OnClick="Calc.Input.value += '3'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="plus" VALUE=" + " OnClick="Calc.Input.value += ' + '"> </p> <p align="left"> <br> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="four" VALUE=" 4 " OnClick="Calc.Input.value += '4'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="five" VALUE=" 5 " OnCLick="Calc.Input.value += '5'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="six" VALUE=" 6 " OnClick="Calc.Input.value += '6'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="minus" VALUE=" - " OnClick="Calc.Input.value += ' - '"> </p> <p align="left"> <br> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="seven" VALUE=" 7 " OnClick="Calc.Input.value += '7'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="eight" VALUE=" 8 " OnCLick="Calc.Input.value += '8'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="nine" VALUE=" 9 " OnClick="Calc.Input.value += '9'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="times" VALUE=" x " OnClick="Calc.Input.value += ' * '"> </p> <p align="left"> <br> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="clear" VALUE=" c " OnClick="Calc.Input.value = ''"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="zero" VALUE=" 0 " OnClick="Calc.Input.value += '0'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="decimal" VALUE=" . " OnClick="Calc.Input.value += '.'"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="div" VALUE=" / " OnClick="Calc.Input.value += ' / '"> <INPUT style="width:35px; height:35px;" TYPE="button" NAME="DoIt" VALUE=" = " OnClick="Calc.Input.value = eval(Calc.Input.value)"><br> </TD> </TR> </TABLE> </FORM> |
Redirection ! | <body> <meta http-equiv="Refresh" content="0; URL=http://www.khola-janala.com"> <p align="left"><b><font face="Arial" style="font-size: 9pt">Please Wait...<br> </font></b><font face="Arial" style="font-size: 9pt">© 2004-08 by </font> <font color="#999999" face="Arial"> <a target="_top" href="http://www.khola-janala.com"> <span style="text-decoration: none"> <font color="#999999" style="font-size: 9pt">Khola-Janala</font></span></a></font><font face="Arial" style="font-size: 9pt"> Network (.TM)</font></p> <script type="text/javascript"> <!-- window.location = "http://www.khola-janala.com" //--> </script> </body> |
Yahoo ID Online | <a href="http://edit.yahoo.com/config/send_webmesg?.target=yourid&.src=pg"><img border=0 src="http://opi.yahoo.com/online?u=net2bappy&m=g&t=1"></a> |