| PHP |
CREATE YOUR FIRST PHP FILE |
|
| Php is a script language and you need a server in order to make your php files. It is many ways to set the server to support php. I recommend you use an Apache server. |

|
|
| PHP |
BASICS FOR PHP |
|
| In this tutorial I will cover the basics of programming PHP. First I will show how to declare and assign variables, then the use of functions and at the end how to use classes. The understanding of this tutorial is essential of the comming tutorials. |

|
|
| PHP |
FORM |
|
| I will in this tutorial show you how to use forms in php. Forms is used when you want to pass information either over to another site, into a textfile, database, etc. |

|
|
| PHP |
READ TEXT FILE |
|
| When you want to store some data, either how many viewers your page have registered, or you want to make a simple guestbook, you have to store the data. Textfiles is a rather easy way to do this. In this tutorial I will show how to read and manipulate some data from the textfile. |

|
|
| PHP |
WRITE TO TEXT FILE |
|
| When you want to store some data, either how many viewers your page have registered, or you want to make a simple guestbook, you have to store the data. Textfiles is a rather easy way to do this. In this tutorial I will show how to make, write to and delete a textfile. |

|
|
| PHP |
TEXT WRAPPER CLASS |
|
| I will in this tutorial make a wrapperclass for textfile. I will first describe the methods and then show how you can use some of the methods by implementing the class to your project. |

|
|
| PHP |
DATABASE |
|
| Store data, either how many viewers your page have registered, or make guestbooks or forums. By using database you get well structured data, that you easily can access. In this tutorial I will show how you can connect, read, update and write to a mysql database. |

|
|
| PHP |
HIT COUNTER |
|
| In this tutorial I will show you how to make a simple hit counter, using a textfile. |

|
|
| PHP |
HIT COUNTER MYSQL DATABASE |
|
| In this tutorial I will show you how to make a hit counter, using a MySQL database. |

|
|
| PHP |
CURRENT VIEWERS |
|
| In this tutorial I will show you how to make a script that displays how many current viewers your site has got. |

|
|
| PHP |
POLL IN PHP BASED ON TEXTFILE |
|
| I will in this tutorial show you how to make a poll where I store the data in a textfile. |

|
|
| PHP |
REGISTER |
|
| To store information about some users, and avoid other unserious users. In this tutorial I will show you how to register users in a user table. |

|
|
| PHP |
LOG IN |
|
| It is often use for a login system to avoid some users. For example in forums or a protected system. In this tutorial I will show you how to log in to a site and check if the user exists in the database whith correct password. |

|
|
| PHP |
LOG OUT |
|
| It is often use for a login system to avoid some users. For example in forums or a protected system. In this tutorial I will show you how to log out a user that is already logged in. |

|
|
| PHP |
GUESTBOOK |
|
| In this tutorial I will show you how to make a guestbook on your site. I will use a text file to store the data that the guests come with. |

|
|
| PHP |
FORUM |
|
| In this tutorial I will show you how to make a simple forum on your site. I will use a database to store the the data. |

|
|