How to make catch Date/Time in VB.net
Microsoft EXCEL 2013
How to Create Cub In Adobe After Effects CC 2014
PHP MySQL JavaScript and HTML5 All-in-One
Learning PHP, Mysql JavaScript, CSS
Web Programming Part I
Cover in CorelDraw
pagination in wordpress
JavaScript Object
<form><input type="button" value="Print This Page" onClick="window.print()" />
</form>--------------------------------------
JavaScript Window.Location<script type="text/javascript">
window.location = "http://www.bbu.edu.kh";</script>
--------------------------------------
JavaScript Time Delay<html><head>
<script type="text/javascript">function delayer()
{window.location = "mypage.html";
}</script>
</head><body onLoad="setTimeout('delayer()', 5000)">
<h2>Prepare to be redirected!</h2></body>
</html>------------------------------------------
JavaScript window.open Function<html>
<head><script type="text/javascript">
<!--function myPopup()
{window.open( "http://www.google.com/" );
}//-->
</script></head>
<body><form>
<input type="button" onClick="myPopup()" value="POP!"></form>
</body></html>
----------------------------------------Upgraded JavaScript Popup Window!
<html><head>
<script type="text/javascript"><!--function myPopup2()
{window.open( "http://www.google.com/", "myWindow", "status = 1, height = 300, width = 300, resizable = 0" )}//--></script>
</head><body>
<form><input type="button" onClick="myPopup2()" value="POP2!">
</form></body>
</html>--------------------------------------
Form Validation - Checking for Non-Empty<script type='text/javascript'>
function notEmpty(elem, helperMsg){ if(elem.value.length == 0)
{ alert(helperMsg);elem.focus();
return false;}
return true;}
</script><form>Required Field:
<input type='text' id='req1'/><input type='button' onclick="notEmpty(document.getElementById('req1'), 'Please Enter a Value')" value='Check Field' /></form>
--------------------done---------------------SetInterval in JavaScript
<head>
<script>function showTime () {var time = new Date()
var hour = time.getHours()var minute = time.getMinutes()
var sMin = (minute<10) ? "0" + minute : minutevar second = time.getSeconds()
var sSecs = (second<10) ? "0" + second : secondvar strTime = hour + ":" + sMin + ":" +sSecs
document.getElementById("clockFace").innerHTML = strTime;}//showTime
</script></head>
<body onload="setInterval(showTime, 1000)"><div id="clockFace" ></div>
</body></html>
PHP and MySQL Scripts and Tutorials Download

download
Creating a website using PHP Includes

Step One A good rule is to keep all files which are related to a particular website in the same folder. This prevents any dead links or linking errors which may creep in later on when the website gets quite large. This applies to all websites you create and not just this tutorial. Another good tip which is worth remembering is to keep all filenames you create for pages in lowercase.
Read more...
(gnv64).jpg)


