- 2013-02-24 - Licence Fondamentale d'Informatique
samedi 2 mars 2013

Simple PHP forum

This tutorial shows the techniques required to make a simple PHP forum. It consists of four pages, one for displaying the forums, one for the topics, one for the replies and finally a page to post new topcis / replies. Database Below are the database tables that are required for this code. CREATE TABLE `main` ( `id`...

EasyPHP

EasyPHP is a WAMP package including the server-side scripting language PHP, the web server Apache, the SQL server MySQL, as well as development tools such as the database manager PhpMyAdmin, the debugger Xdebug and many others. A Complete and Ready-to-Use Environment...

Notepad++

Notepad++ is a good free text editor for programmer, which supports several programming languages and has many cool features.  Features WYSIWYG User Defined Syntax Highlighting Auto-completion Multi-Document Multi-View Regular Expression Search/Replace supported Full...

Encrypting Password using md5() function

Using md5(); function to make your login system more secure. Syntax $password="123456";md5($password);Use md5(); to encrypts password to make it more secure Overview Look at these two databases, it's the same person and same info, the first one we don't encrypt...

PHP Login script tutorial

Learn to create a simple login system with php + mysql script, this tutorial is easy to follow, teach you step by step. Overview In this tutorial, we create 3 php files for testing our code.1. main_login.php2. checklogin.php3. login_success.phpSteps1. Create table...

Create database, table and managing MySQL database using phpMyAdmin

phpMyAdmin is a tool for managing MySQL database and free of charge, it's a web base tool. This tutorial you'll learn how to create database, create table include export(backup) MySQL database.  phpMyAdmin is a tool written in PHP intended to handle the administration...

PHP User online tutorial

This tutorial show you php script that count how many users are active on your site. Overview In this tutorial, create 1 PHP file for testing this code.1. user_online.phpSteps1. Create table "user_online" in mysql in database "test".2. Create file user_online.php. STEP1:...

PHP Upload single file

Simple PHP uploade file script. Overview In this tutorial, create 2 files1. upload.php2. upload_ac.phpSteps1. Create file upload.php.2. Create file upload_ac.php.3. Create folder "upload" for store uploaded files.4. CHMOD your upload folder to "777" by using your ftp...

PHP Multiple files upload

You can upload multiple files with one time submit. Array is a big role in this tutorial, let's see the scripts. Overview In this tutorial, create 2 files1. multiple_upload.php2. multiple_upload_ac.phpSteps1. Create file multiple_upload.php2. Create file multiple_upload_ac.php3....

PHP Limit upload file size

This upload form can limit upload file size. Overview In this tutorial, you have to create 2 files for testing code.1. limit_upload.php2. limit_upload_ac.phpSteps1. Create file limit_upload.php2. Create file limit_upload_ac.php3. Create folder "upload" for store uploaded...

Creating a simple PHP guestbook (2/2)

Creating simple PHP guestbook. STEP4: Create file viewguestbook.php ############### Code <table width="400" border="0" align="center" cellpadding="3" cellspacing="0"><tr><td><strong>View Guestbook | <a href="guestbook.php">Sign Guestbook</a>...

Creating a simple PHP guestbook (1/2)

Creating simple PHP guestbook. Overview In this tutorial, we have to create 3 files.1. guestbook.php2. addguestbook.php3. viewguestbook.phpSteps1. Create table name "guestbook" in database "test".2. Create file guestbook.php.3. Create file addguestbook. php.4. Create...
 
-