Not ads!
Click Here to View
Go look through here:
http://xbuilder.elementfx.com/sigs.php
Took me nearly 1 hours to finish and figure out.
Todo list, I'm going to make a dynamic sigs and release them maybe tomorrow.
Source Codes, have to be save in php format or else it wouldn't work and you are required to have a localhost which can able to view the codes.
PHP Code:<?php
$file = rand(1, 3);
$file .= '.jpg';
echo '<img src="sigs/'.$file.'" >';
?>
<style type="text/css">
<!--
#txt {
border:none;
font-family:verdana;
font-size:16pt;
font-weight:bold;
border-right-color:#FFFFFF;
margin-left:-4px;
}
-->
</style><script type="text/javascript">
<!--
/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Neill Broderick :: http://www.bespoke-software-solutions.co.uk/downloads/downjs.php */
var mins
var secs;
function cd() {
mins = 1 * m("00"); // change minutes here
secs = 0 + s(":04"); // change seconds here (always add an additional second to your total)
redo();
}
function m(obj) {
for(var i = 0; i < obj.length; i++) {
if(obj.substring(i, i + 1) == ":")
break;
}
return(obj.substring(0, i));
}
function s(obj) {
for(var i = 0; i < obj.length; i++) {
if(obj.substring(i, i + 1) == ":")
break;
}
return(obj.substring(i + 1, obj.length));
}
function dis(mins,secs) {
var disp;
if(mins <= 9) {
disp = " 0";
} else {
disp = " ";
}
disp += mins + ":";
if(secs <= 9) {
disp += "0" + secs;
} else {
disp += secs;
}
return(disp);
}
function redo() {
secs--;
if(secs == -1) {
secs = 59;
mins--;
}
document.cd.disp.value = dis(mins,secs); // setup additional displays here.
if((mins == 0) && (secs == 0)) {
window.location = "sigs.php" // redirects to specified page once timer ends and ok button is pressed
} else {
cd = setTimeout("redo()",1000);
}
}
function init() {
cd();
}
window.onload = init;
//-->
</script>
<form name="cd">
<strong><font size="5">Refreshing in</font></strong>
<input id="txt" readonly="true" type="text" value="00:03" border="0" name="disp">
</form>
:tongue:

