121
Search Engine Optimization / Re: Facebook Marketing Tools?
« on: August 24, 2011, 05:52:49 AM »
I am totally agree with this sweet writing.
Super Web Mart - Discount Coupons & Deals - Discount Promos, Coupon Codes, Discount deals and web site reviews |
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
<?php
echo rand() . "\n";
echo rand() . "\n";
?>
<SCRIPT>
function sumDigits(num) {
var i, sum = 0; // can declare two variables at once
for (i = 1; i <= num; i++) {
sum += i; // add each number to sum (ie, 1 + 2 + ...+ num)
}
alert("The sum of the digits from 1 to "+ num + " is:\n\n\t " + sum);
}
</SCRIPT>
<BODY>
Looping Functions - Calculate the sum of the digits.
<FORM NAME="SumNums">
The sum of the digits from 1 to:
<INPUT TYPE="text" NAME="charNum">
<INPUT TYPE="button" VALUE="Calculate"
onClick="sumDigits(SumNums.charNum.value)">
</FORM>
<script language="JavaScript">
var sTargetURL = "redirectiontarget.htm";
function doRedirect()
{
setTimeout( "window.location.href =url, 2*1000 );
}
</script>
<script language="JavaScript1.1">
function doRedirect()
{
window.location.replace( sTargetURL );
}
doRedirect();
</script>
<body onload="doRedirect()">
<p>Loading <a href="redirectiontarget.htm">redirection target</a></p>
<p>In approx. 2 seconds the redirection target page should load.<br>
If it doesn't please select the link above.</p>
<?php
echo date("l");
echo date('l jS \of F Y h:i:s A');
echo "July 1, 2000 is on a " . date("l", mktime(0, 0, 0, 7, 1, 2000));
echo date("DATE");
echo date(DATE_ATOM, mktime(0, 0, 0, 7, 1, 2000));
?>
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send("SET");
<?php
$input_array("FirSt" => 1, "SecOnd" => 4);
print_r(array_change_key_case($input_array, CASE_UPPER));
?>