A variable is an area of memory which is set aside to store information , this is assigned an identifier by the programmer . You can recognise variables in PHP because they are prefixed with the dollar ( $ ) sign . To assign a variable you use the assignment operator ( = ) . [...]
Displaying the total memory on the system.
This simple API example we are going to get the total memory available on the system.
Start up Visual Basic as usual and enter the code below in the general declarations section of the form.
Option Explicit
Private Type MEMORYSTATUS
dwLength As Long
dwMemoryLoad As Long
dwTotalPhys As Long
dwAvailPhys As Long
dwTotalPageFile As Long
dwAvailPageFile As Long
dwTotalVirtual [...]
Sending Email with ASP
All good websites need to be able to send and recieve email . Ok you could have a mailto link in your page pointing to your email address which when the user clicked on it their default email client opened up but why not let ASP handle this . [...]
Date and Time
Knowing how to use the various date and time functions is very important for all ASP programmers , in this tutorial we will show you the basic date and time functions.
If you want to get the current date you can use the Date function .
<%
Response.Write “The date is [...]