July29
Use PHP to lock a MySQL table entries or rows. I have used this in licensing a software I had ...
July23
Set width, height, position of an existing opened window
Use Javascript resizeTo() and moveTo() function.
Example
<html>
<head>
<title>Resize Page</title>
<script language="javascript">
<!--
function resizeWindow()
{
this.moveTo(0,0);
this.resizeTo(300,300);
}
//-->
</script>
<body bgcolor="#999999" onLoad="resizeWindow();">
Hello There
</body>
</html>
July15
To check how to send simple emails check the previous script.
To send emails with attachments do the following:
Create a file called ...
July6
One of the most commonly performed date calculations is one which calculates age. Unfortunately there isn't a function to do ...