Search the Knowledge Base
Live Search : Type for information & search straight away + advanced search
Latest Articles
December 21, 2011 Articles 0 0
Creating an Access database First we will create a database in Access called Employees.mdb. This will have a table called Employee and here is what it should look like: Employee EmpNo FirstName LastName Insert the following values into
December 21, 2011 Articles 0 0
What is a session variable? The variables that we have created so far only exist on the page that they are declared. Session variables are the same as normal variables except that they can be used by other pages. Session variables only exist for a certain
December 21, 2011 Articles 0 0
If Statement You can make a decision based on user input using an If statement. The If statement tests a condition and if the result is true then it runs the code that follows the If statement but if the result is false then it runs the code after the else
December 21, 2011 Articles 0 0
Forms An HTML form is a group of text boxes and buttons other things that allow a user to enter data. Here is the form that you see quite often which we will be using: Username: Password: Here is the HTML code for the form: <form method="get"
